Skip to content

Commit fe08df3

Browse files
committed
update links and some minor formatting improvements
1 parent 39ac92d commit fe08df3

File tree

1 file changed

+14
-10
lines changed

1 file changed

+14
-10
lines changed

README.md

+14-10
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Cmder is a **software package** created out of pure frustration over absence of
88

99
## Why use it
1010

11-
The main advantage of Cmder is portability. It is designed to be totally self-contained with no external dependencies, which makes it great for **USB Sticks** or **cloud storage**. So you can carry your console, aliases and binaries (like wget, curl and git) with you anywhere.
11+
The main advantage of Cmder is portability. It is designed to be totally self-contained with no external dependencies, which makes it great for **USB Sticks** or **cloud storage**. So you can carry your console, aliases and binaries (like `wget`, `curl` and `git`) with you anywhere.
1212

1313
The Cmder's user interface is also designed to be more eye pleasing, and you can compare the main differences between Cmder and ConEmu [here](https://conemu.github.io/en/cmder.html).
1414

@@ -71,7 +71,7 @@ So you've experimented with Cmder a little and want to give it a shot in a more
7171
1. Open a terminal as an Administrator
7272
2. Navigate to the directory you have placed Cmder
7373
3. Execute `.\cmder.exe /REGISTER ALL`
74-
_If you get a message "Access Denied" ensure you are executing the command in an **Administrator** prompt._
74+
_If you get an "Access Denied" message, make sure you are executing the command in an **Administrator** prompt._
7575
7676
In a file explorer window right click in or on a directory to see "Cmder Here" in the context menu.
7777
@@ -188,15 +188,15 @@ Documentation is in the file for each setting.
188188
| (custom arguments) | User defined arguments processed by `cexec`. Type `cexec /?` for more usage. | not set |
189189
190190
### Cmder Shell User Config
191-
Single user portable configuration is possible using the cmder specific shell config files. Edit the below files to add your own configuration:
191+
Single user portable configuration is possible using the Cmder specific shell config files. Edit the below files to add your own configuration:
192192
193193
| Shell | Cmder Portable User Config |
194194
| ------------- | ----------------------------------------- |
195195
| Cmder | `%CMDER_ROOT%\config\user_profile.cmd` |
196196
| PowerShell | `$ENV:CMDER_ROOT\config\user_profile.ps1` |
197197
| Bash/Mintty | `$CMDER_ROOT/config/user_profile.sh` |
198198
199-
Note: Bash and Mintty sessions will also source the `$HOME/.bashrc` file if it exists after it sources `$CMDER_ROOT/config/user_profile.sh`.
199+
**Note:** Bash and Mintty sessions will also source the `$HOME/.bashrc` file if it exists after it sources `$CMDER_ROOT/config/user_profile.sh`.
200200
201201
You can write `*.cmd|*.bat`, `*.ps1`, and `*.sh` scripts and just drop them in the `%CMDER_ROOT%\config\profile.d` folder to add startup config to Cmder.
202202
@@ -230,7 +230,7 @@ Aliases defined using the `alias.bat` command will automatically be saved in the
230230
231231
To make an alias and/or any other profile settings permanent add it to one of the following:
232232
233-
Note: These are loaded in this order by `$CMDER_ROOT/vendor/init.bat`. Anything stored in `%CMDER_ROOT%` will be a portable setting and will follow cmder to another machine.
233+
Note: These are loaded in this order by `$CMDER_ROOT/vendor/init.bat`. Anything stored in `%CMDER_ROOT%` will be a portable setting and will follow Cmder to another machine.
234234
235235
* `%CMDER_ROOT%\config\profile.d\*.cmd` and `\*.bat`
236236
* `%CMDER_ROOT%\config\user_aliases.cmd`
@@ -241,7 +241,7 @@ Bash shells support simple and complex aliases with optional parameters natively
241241
242242
To make an alias and/or any other profile settings permanent add it to one of the following:
243243
244-
Note: These are loaded in this order by `$CMDER_ROOT/vendor/git-for-windows/etc/profile.d/cmder.sh`. Anything stored in `$CMDER_ROOT` will be a portable setting and will follow cmder to another machine.
244+
Note: These are loaded in this order by `$CMDER_ROOT/vendor/git-for-windows/etc/profile.d/cmder.sh`. Anything stored in `$CMDER_ROOT` will be a portable setting and will follow Cmder to another machine.
245245
246246
* `$CMDER_ROOT/config/profile.d/*.sh`
247247
* `$CMDER_ROOT/config/user_profile.sh`
@@ -254,7 +254,7 @@ PowerShell has native simple alias support, for example `[new-alias | set-alias]
254254
255255
To make an alias and/or any other profile settings permanent add it to one of the following:
256256
257-
Note: These are loaded in this order by `$ENV:CMDER_ROOT\vendor\user_profile.ps1`. Anything stored in `$ENV:CMDER_ROOT` will be a portable setting and will follow cmder to another machine.
257+
Note: These are loaded in this order by `$ENV:CMDER_ROOT\vendor\user_profile.ps1`. Anything stored in `$ENV:CMDER_ROOT` will be a portable setting and will follow Cmder to another machine.
258258
259259
* `$ENV:CMDER_ROOT\config\profile.d\*.ps1`
260260
* `$ENV:CMDER_ROOT\config\user_profile.ps1`
@@ -292,7 +292,7 @@ The destination file extension depends on the shell you use in that environment.
292292
* bash - Copy to `/etc/profile.d/cmder_exinit.sh`
293293
* zsh - Copy to `/etc/profile.d/cmder_exinit.zsh`
294294
295-
Uncomment and edit the below line in the script to use Cmder config even when launched from outside Cmder.
295+
Uncomment and edit the line below in the script to use Cmder config even when launched from outside Cmder.
296296
297297
```
298298
# CMDER_ROOT=${USERPROFILE}/cmder # This is not required if launched from Cmder.
@@ -344,9 +344,9 @@ To conditionally start `notepad.exe` when you start a specific `cmder` task:
344344
345345
```
346346

347-
To see detailed usage of `cexec`, type `cexec /?` in cmder.
347+
To see detailed usage of `cexec`, type `cexec /?` in Cmder.
348348

349-
### Integrating Cmder with [Hyper](https://github.com/zeit/hyper), [Microsoft VS Code](https://code.visualstudio.com/), and your favorite IDEs
349+
### Integrating Cmder with [Windows Terminal](https://github.com/cmderdev/cmder/wiki/Seamless-Windows-Terminal-Integration), [VS Code](https://github.com/cmderdev/cmder/wiki/Seamless-VS-Code-Integration), and your favorite IDEs
350350

351351
Cmder by default comes with a vendored ConEmu installation as the underlying terminal emulator, as stated [here](https://conemu.github.io/en/cmder.html).
352352

@@ -388,6 +388,10 @@ You can download builds of the current development branch by going to AppVeyor v
388388

389389
[![AppVeyor](https://ci.appveyor.com/api/projects/status/github/cmderdev/cmder?svg=True)](https://ci.appveyor.com/project/cmderdev/cmder/branch/master/artifacts)
390390

391+
The latest download builds by GitHub Actions can be downloaded from the link below:
392+
393+
[![Build Status](https://github.com/cmderdev/cmder/actions/workflows/build.yml/badge.svg)](https://github.com/cmderdev/cmder/actions/workflows/build.yml)
394+
391395
## License
392396

393397
All software included is bundled with own license

0 commit comments

Comments
 (0)