Hacker News new | ask | show | jobs
by daGrevis 4810 days ago
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...
2 comments

I 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>>
As with most vim commands you can type a number first to repeat your command