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

Fixes issue with having to wait before input after navigation
This commit is contained in:
2025-02-09 13:03:19 +01:00
parent 16baa1cd4f
commit 3c90e64b5e
+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 'y' send -X copy-selection # Yank selection in copy mode.
bind-key -r k select-pane -U
bind-key -r j select-pane -D
bind-key -r h select-pane -L
bind-key -r l select-pane -R
bind-key k select-pane -U
bind-key j select-pane -D
bind-key h select-pane -L
bind-key l select-pane -R
bind-key -r C-k resize-pane -U
bind-key -r C-j resize-pane -D
bind-key -r C-h resize-pane -L