Skip to content

Instantly share code, notes, and snippets.

@acnalesso
Last active December 23, 2015 13:48
Show Gist options
  • Save acnalesso/6644125 to your computer and use it in GitHub Desktop.
Save acnalesso/6644125 to your computer and use it in GitHub Desktop.
VimL ( Vim Language ) key maps.
" 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