From 7beec2e197f0630f419cf379e4b3cd1a0a303a6f Mon Sep 17 00:00:00 2001 From: Fernando Schauenburg Date: Fri, 14 Oct 2022 15:20:57 +0200 Subject: [PATCH] tmux: enable repetition for navigation bindings --- config/tmux/tmux.conf | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/config/tmux/tmux.conf b/config/tmux/tmux.conf index eabaa5e..83511da 100644 --- a/config/tmux/tmux.conf +++ b/config/tmux/tmux.conf @@ -16,12 +16,12 @@ bind n command-prompt 'rename-window %%' bind N command-prompt 'rename-session %%' # Move around -bind . next-window -bind , previous-window -bind C-h select-pane -L -bind C-j select-pane -D -bind C-k select-pane -U -bind C-l select-pane -R +bind -r . next-window +bind -r , previous-window +bind -r C-h select-pane -L +bind -r C-j select-pane -D +bind -r C-k select-pane -U +bind -r C-l select-pane -R # Resize panes bind -r h resize-pane -L 1