vim: mapping <control-j> key

4

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 only one that doesn't work is the last one, . Doing this in insert mode just gives no response. I'm wondering why this might be, and I just don't know where to even begin looking for the problem. It doesn't appear to be mapped to anything since nothing happens when I do it, whether I'm in the terminal or in gvim. Any pointers would be great! Thanks!

bhh1988

Posted 2012-06-23T08:56:10.947

Reputation: 263

Found this post. User sehe's answer solved my problem here:http://stackoverflow.com/questions/8304421/trouble-mapping-c-j-in-vim-with-latex-suite.

– bhh1988 – 2012-06-23T18:59:00.020

Answers

4

you can try to use inoremap <C-j> <down> to override old keysettings and you can have a look what a key is already mapped with

:map <C-j>

epsilonhalbe

Posted 2012-06-23T08:56:10.947

Reputation: 256

Thanks for the help. That was the first step I needed to figure out how to solve the problem. Found a stackoverflow post very similar to this that almost perfectly solves my problem. – bhh1988 – 2012-06-23T18:57:13.313