From 3c90e64b5ead1e1fb76c83f1d10ebeefb3c1453b Mon Sep 17 00:00:00 2001 From: Oscar Wallberg Date: Sun, 9 Feb 2025 13:03:19 +0100 Subject: [PATCH] fix(tmux): make pane navigation bindings non-repeatable Fixes issue with having to wait before input after navigation --- .config/tmux/tmux.conf | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.config/tmux/tmux.conf b/.config/tmux/tmux.conf index 1326933..85e72bf 100644 --- a/.config/tmux/tmux.conf +++ b/.config/tmux/tmux.conf @@ -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