vim: mapping <control-j> key
- by bhh1988
When I'm in insert mode, I sometimes want to be able to move around without using the arrow keys, and without having to go back into normal mode. So in my vimrc I've set up key bindings to do this:
imap <C-l> <right>
imap <C-h> <left>
imap <C-k> <up>
imap <C-j> <down>
But for some odd reason the…