I still cannot for the life of me understand remapping keys in Vim. I have the following in my vimrc
" This works
nnoremap <C-h> <C-w>h
nnoremap <C-j> <C-w>j
nnoremap <C-k> <C-w>k
nnoremap <C-l> <C-w>l
" But this doesn't?
nnoremap <C-+> <C-w>> " Should map to Ctrl +
nnoremap <C--> <C-w>< " Should map to Ctrl -
I'm trying to remap the window resize keybindings because they are a bit clumsy. Too many keypresses for too little movement. But why is it that the bottom two won't work if they are written in exactly the same way as the top two?