From 1ccba52719dcc873ae996c2fe0e4e0be598d91bd Mon Sep 17 00:00:00 2001 From: Fernando Schauenburg Date: Wed, 14 Feb 2024 03:03:26 +0100 Subject: [PATCH] tmux: make next-/previous-window key binding not repeating --- config/tmux/tmux.conf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config/tmux/tmux.conf b/config/tmux/tmux.conf index 0ccfec0..e44ee29 100644 --- a/config/tmux/tmux.conf +++ b/config/tmux/tmux.conf @@ -19,8 +19,8 @@ bind S command-prompt 'rename-session %%' bind s set synchronize-panes # Move around -bind -r . next-window -bind -r , previous-window +bind . next-window +bind , previous-window bind / last-window bind h select-pane -L bind j select-pane -D