Hi I'm trying to optimise my window management in vim by mapping ctrl-k to ctrl-w, k so i can just press ctrl-k to switch to the split window above the one I'm working in (I'm doing this for h,j and l also but it's only k that's causing the problem).
I've added this into my .vimrc
noremap <silent> <c-k> <C-W>k
noremap <silent> <c-j> <C-W>j
noremap <silent> <c-h> <C-W>h
noremap <silent> <c-l> <C-W>l
However if I press ctrl-k, then something weird happens. It changes depending on where I am in the document.
- If I'm at the top of a document with many lines beneath my curser, the cursor hops down a few lines and columns into a completely different place.
- If I'm at the bottom of a document, it creates loads of spaces from the cursor onwards.
I've tested and removing the above lines causes the symptoms to stop happening. I'm just really confused as to what is going on!
Some info: I'm using the vim binary that comes with macvim via the command line.
Any help would be greatly appreciated!
Thanks!