From 742671673240559499f9583cb16049e802964315 Mon Sep 17 00:00:00 2001 From: Fernando Schauenburg Date: Thu, 22 Sep 2022 15:54:51 +0200 Subject: [PATCH] tmux: hold down CTRL to move between panes This makes the movements a bit faster and more fluid because I can just keep my finger on CTRL after typing in the prefix. --- config/tmux/tmux.conf | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/config/tmux/tmux.conf b/config/tmux/tmux.conf index e5441bc..aff9fe3 100644 --- a/config/tmux/tmux.conf +++ b/config/tmux/tmux.conf @@ -18,16 +18,16 @@ bind N command-prompt 'rename-session %%' # Move around bind . next-window bind , previous-window -bind h select-pane -L -bind j select-pane -D -bind k select-pane -U -bind l select-pane -R +bind C-h select-pane -L +bind C-j select-pane -D +bind C-k select-pane -U +bind C-l select-pane -R # Resize panes -bind -r C-h resize-pane -L 5 -bind -r C-j resize-pane -D 5 -bind -r C-k resize-pane -U 5 -bind -r C-l resize-pane -R 5 +bind -r h resize-pane -L 1 +bind -r j resize-pane -D 1 +bind -r k resize-pane -U 1 +bind -r l resize-pane -R 1 # Arrangement of panes bind b break-pane \; select-pane -m \; last-window