tmux-ssh-split
tmux-ssh-split copied to clipboard
[feature request] Make tmux-ssh-split work with set -g mouse on
[feature request] Make tmux-ssh-split work with set -g mouse on
Thank you so much for your consideration.
Interesting idea. I guess the easiest way to implement that would be by creating a custom menu and override the binding used to show the default menu :thinking:
Ref:
The default menu is defined as: https://github.com/tmux/tmux/blob/109d2bda1a7b06948e35b7e08c159e71ebc988fb/key-bindings.c#L48-L70
Not easier keeping the menu and just override:
" 'Horizontal Split' 'h' {split-window -h}" \
" 'Vertical Split' 'v' {split-window -v}" \
with ssh-split ones?
But I have no idea actually :-)