Comment on Vim Splits – Move Faster and More NaturallyComments−daGrevis13yI'm interested to increase "the speed" of resizing splits. It's annoying to press `<C-w> <` a few times just to move split a few pixels...−BostX13yI use Alt-numpad keys. In my case it works quite fast: " Decrease height / width nnoremap <A--> <C-W>- nnoremap <A-/> <C-W>< " Increase height / width nnoremap <A-+> <C-W>+ nnoremap <A-*> <C-W>>−inquist13yAs with most vim commands you can type a number first to repeat your command
Comments
I'm interested to increase "the speed" of resizing splits. It's annoying to press `<C-w> <` a few times just to move split a few pixels...
I use Alt-numpad keys. In my case it works quite fast:
As with most vim commands you can type a number first to repeat your command