Advertisement
Guest User

Untitled

a guest
May 27th, 2012
316
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
VIM 0.34 KB | None | 0 0
  1. "Remap arrow keys in n and v modes
  2. nnoremap <Left> <<
  3. nnoremap <Right> >>
  4. nnoremap <Up> <Nop>
  5. nnoremap <Down> <Nop>
  6.  
  7. vnoremap <Left> <
  8. vnoremap <Right> >
  9. vnoremap <Up> <Nop>
  10. vnoremap <Down> <Nop>
  11.  
  12. "Turn arrows off in insert mode
  13. inoremap <Up> <Esc>ddkPi
  14. inoremap <Down> <Esc>ddpi
  15. inoremap <Left> <Esc>xphi
  16. inoremap <Right> <Esc>lxpi
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement