In fact, you can add your own navigation keys. For example, I use the following in my .vimrc to make hovering in command mode in the hjkl way (abuse of the Ctrl key):
" moving aroung in command mode cnoremap <ch> <left> cnoremap <cj> <down> cnoremap <ck> <up> cnoremap <cl> <right> cnoremap ^ <home> cnoremap $ <end>
where ^ and $ are really <ctrl- ^> and <ctrl- $> respectivelly printed as <cv> c- → and <cv> c- $> in .vimrc (for some reason <c- ^> and < c- $> will not work, at least in my setup, but first do)
Dalker Apr 6 '13 at 14:34 2013-04-06 14:34
source share