I want to remap default cursor movement keys (hjkl) to Colemak's on same places (hnei) + alt, just as described here: https://forum.colemak.com/topic/50-colemak-vim/p6/
This is what was typed to .vimrc (which lies in correct directory, I checked):
" Colemak hjkl hack
nnoremap <A-h> <Left>|
nnoremap <A-n> <Down>|
nnoremap <A-e> <Up>|
nnoremap <A-i> <Right>|
I have already tried to:
- Remove "|"s
- Switch between and
- Use hjkl instead of
<Left><Down><Up><Right>
- Use "noremap" instead of "nnoremap",
Nothing happens. What is wrong?