Skip to content

Instantly share code, notes, and snippets.

@despo
Created July 15, 2012 13:17
Show Gist options
  • Select an option

  • Save despo/3116883 to your computer and use it in GitHub Desktop.

Select an option

Save despo/3116883 to your computer and use it in GitHub Desktop.
no arrow keys please
nnoremap <up> <nop>
nnoremap <down> <nop>
nnoremap <left> <nop>
nnoremap <right> <nop>
inoremap <up> <nop>
inoremap <down> <nop>
inoremap <left> <nop>
inoremap <right> <nop>
@markburns

Copy link
Copy Markdown

nnoremap <Left> :echoe "Use h"<CR>
nnoremap <Right> :echoe "Use l"<CR>
nnoremap <Up> :echoe "Use k"<CR>
nnoremap <Down> :echoe "Use j"<CR>

@despo

despo commented Jul 16, 2012

Copy link
Copy Markdown
Author

@markburns very nice. I don't need that anymore, but I wish I had done that when I was learning :)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment