I have key bindings in tmux
which I really enjoy to manage split panes:
bind -r H resize-pane -L 5
bind -r J resize-pane -D 5
bind -r K resize-pane -U 5
bind -r L resize-pane -R 5
This allows me to hit L wit multiple Ls in a row. It also allows me to say the border (left, right, etc) I want to increase.
I'd like to have the same thing in vim however, vim does not seem to have the context of border:
"attempt 1
nnoremap <leader>L :vertical resize +5<cr><leader>
"attempt 2
nnoremap <leader>L :vertical resize +5<cr>
However, this only works if on the left most pane as when on the right pane, I'd like it to be decreasing the size by 5. Also, this does not allow me to do it repetitively. (I'd like to hit key once, then as many times as I need the "L".
I was wondering if anyone had found a way to do this.
Note: I put the tmux
config so someone could play with it to see exactly what I meant.
There are some plugins that do that. For example tinymode, submode and tinykeymap
At least for tinykeymap, that used to be default behaviour, that it would switch to the tmux behaviour when pressing Ctrl++ (and this was the reason, I finally uninstalled that plugin)