Last active
December 23, 2015 13:48
-
-
Save acnalesso/6644125 to your computer and use it in GitHub Desktop.
VimL ( Vim Language ) key maps.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
" map :w to r to save and run tets | |
map r :w<CR> | |
" map wq to :wq | |
map wq :wq<CR> | |
" map Caps (bye bye) to quit from insert mode | |
imap <Caps> <Esc><CR> | |
" map watchr to run tests, looks for | |
" specs.watchr as default | |
map <C-A> :ScreenShell watchr CHANGE_ME.watchr<CR> | |
" map sq (screen quit) to ScreenQuit | |
map sq :ScreenQuit<CR> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment