Standard escape codes are prefixed with Escape:
- Ctrl-Key:
^[ - Octal:
\033 - Unicode:
\u001b - Hexadecimal:
\x1B - Decimal:
27
Learning VIM in Xcode comes with its own set of challenges and limitations, but there is enough there for you to give your mousing hand a break and master the keyboard.
A limited set of commands are available in Xcode, and this document attempts help ease the learning curve of using VIM in Xcode by providing a handy reference as well as what I find works for me in practice.
NOTE:
Commands are case-sensitive. A command of N means pressing shift + n on the keyboard.
This document is a work in progress! Leave a comment if you would like to see a change.
| brew tap homebrew/versions | |
| brew install v8-315 | |
| gem install libv8 -v '3.16.14.13' -- --with-system-v8 | |
| gem install therubyracer -- --with-v8-dir=/usr/local/opt/v8-315 | |
| bundle install |
(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
| $('#graph-preview').replaceWith("<%=j render partial: 'preview' %>"); | |
| #!/bin/bash | |
| # i18n.sh | |
| # Automate rake translations | |
| # syntax: | |
| # i18n.sh <path> | |
| langs=(zh-TW nl fr de it pt es el tr) |
| echo ".DS_Store" >> ~/.gitignore-system | |
| git config --global core.excludesfile ~/.gitignore-system |