fix(tmux): make pane navigation bindings non-repeatable

Fixes issue with having to wait before input after navigation
This commit is contained in:
Oscar Wallberg
2025-02-09 13:03:19 +01:00
parent 66c52a15d9
commit 77649428fd
+4 -4
View File
@@ -191,10 +191,10 @@ bind-key -T copy-mode-vi 'v' send -X begin-selection # Begin selectio
bind-key -T copy-mode-vi 'C-v' send -X rectangle-toggle # Begin selection in copy mode. bind-key -T copy-mode-vi 'C-v' send -X rectangle-toggle # Begin selection in copy mode.
bind-key -T copy-mode-vi 'y' send -X copy-selection # Yank selection in copy mode. bind-key -T copy-mode-vi 'y' send -X copy-selection # Yank selection in copy mode.
bind-key -r k select-pane -U bind-key k select-pane -U
bind-key -r j select-pane -D bind-key j select-pane -D
bind-key -r h select-pane -L bind-key h select-pane -L
bind-key -r l select-pane -R bind-key l select-pane -R
bind-key -r C-k resize-pane -U bind-key -r C-k resize-pane -U
bind-key -r C-j resize-pane -D bind-key -r C-j resize-pane -D
bind-key -r C-h resize-pane -L bind-key -r C-h resize-pane -L