cmder/Readme.md

84 lines
3.1 KiB
Markdown
Raw Normal View History

2013-07-09 15:43:50 +08:00
# Cmder
2014-01-03 04:23:40 +08:00
Latest release is **[v1.1.3](https://github.com/bliker/cmder/releases/tag/v1.1.3)**
2013-07-16 06:09:35 +08:00
Cmder is a **software package** created out of pure frustration over absence of usable console emulator on Windows. It is based on [ConEmu](https://code.google.com/p/conemu-maximus5/) with *major* config overhaul. Monokai color scheme, amazing [clink](https://github.com/mridgers/clink) and custom prompt layout.
2013-07-09 15:43:50 +08:00
2013-07-16 05:45:15 +08:00
![Cmder Screenshot](http://i.imgur.com/g1nNf0I.png)
2013-07-09 15:43:50 +08:00
## Why use it
2013-12-07 19:28:05 +08:00
The main advantage of Cmder is portability. It is designed to be totally self-contained with no external dependencies, that is makes it great for **USB Sticks** or **Dropbox**. So you can carry your console, aliases and binaries (like wget, curl and git) with you anywhere.
2013-07-09 15:43:50 +08:00
2013-07-16 06:22:30 +08:00
## Installation
1. Download the latest release
1. Extract
1. (optional) Place files into `bin` folder, it will be injected into your PATH.
1. Run cmder
2013-07-16 06:24:32 +08:00
*(There will be a version with installer)*
2013-07-16 06:22:30 +08:00
2013-07-09 15:43:50 +08:00
## Keyboard shortcuts
### Tab manipulation
* `Ctrl + t` : new tab dialog (maybe you want to open cmd as admin?)
* `Ctrl + w` : close tab
* `Ctrl + d` : close tab (if pressed on empty command)
2013-12-26 16:11:11 +08:00
* `Shift + alt + number` : fast new tab: `1` - CMD, `2` - Powershell `*` - More to come
2013-07-09 15:43:50 +08:00
* `Alt + enter`: Fullscreen
### Shell
* `Shift + Up` : Traverse up in directory structure (lovely feature!)
* `End, Home, Ctrl` : Traversing text with as usual on Windows
2013-07-09 15:43:50 +08:00
* `Ctrl + r` : History search
* `Shift + mouse` : Select and copy text from buffer
(Some shortcuts are not yet documented, thought they exist, please add them here)
2013-07-16 06:22:30 +08:00
## Features
### Aliases
2013-07-16 06:24:32 +08:00
You can define simple aliases with command `alias name=command`.
2013-07-16 06:26:07 +08:00
2013-07-16 06:24:32 +08:00
For example there is one defined for you `alias e.=explorer .`
2013-07-16 06:22:30 +08:00
All aliases will be saved in `/config/aliases` file
2013-07-09 15:43:50 +08:00
## Todo
1. Complete PowerShell compatibility.
2. Workaround git.exe overload after msysgit download (Granted this is an upstream issue).
3. Redo Build/Pack scripts or remove them altogether.
4. Launcher XP compatibility.
2014-02-03 02:08:59 +08:00
5. Git Bash
2014-02-18 22:59:44 +08:00
6. Check for clink and git before injecting them
2013-07-16 06:14:34 +08:00
## License
All software included is bundled with own license
The MIT License (MIT)
Copyright (c) 2013 Samuel Vasko
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
2013-07-17 01:26:12 +08:00
THE SOFTWARE.