Standard escape codes are prefixed with Escape:
- Ctrl-Key:
^[ - Octal:
\033 - Unicode:
\u001b - Hexadecimal:
\x1B - Decimal:
27
Thank you everybody, Your comments makes it better
sh -c "$(curl -fsSL https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"| # First install tmux | |
| brew install tmux | |
| # For mouse support (for switching panes and windows) | |
| # Only needed if you are using Terminal.app (iTerm has mouse support) | |
| Install http://www.culater.net/software/SIMBL/SIMBL.php | |
| Then install https://bitheap.org/mouseterm/ | |
| # More on mouse support http://floriancrouzat.net/2010/07/run-tmux-with-mouse-support-in-mac-os-x-terminal-app/ |
| Here are the steps to install node, npm and express on Amazon 32 bit Linux AMI: | |
| sudo yum install gcc-c++ | |
| sudo yum install openssl-devel | |
| wget http://nodejs.org/dist/node-v0.4.2.tar.gz (Pick the stable version available) | |
| tar -zxvf node-v0.4.2.tar.gz | |
| cd node-v0.4.2 | |
| export JOBS=2 | |
| ./configure | |
| make |