From 5111831300e8bc4cfe5b02102c3be7da42d736da Mon Sep 17 00:00:00 2001 From: Sanchayan Maity Date: Mon, 20 Dec 2021 16:00:46 +0530 Subject: [PATCH] tmux: Use Ctrl-arrow keys to switch panes --- tmux/.tmux.conf | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/tmux/.tmux.conf b/tmux/.tmux.conf index 4a7c8bb..1ff0a57 100644 --- a/tmux/.tmux.conf +++ b/tmux/.tmux.conf @@ -38,11 +38,11 @@ set-option -g allow-rename off set -g mouse on set -g focus-events on -# Use Alt-arrow keys without prefix key to switch panes -bind -n M-h select-pane -L -bind -n M-l select-pane -R -bind -n M-k select-pane -U -bind -n M-j select-pane -D +# Use Ctrl-arrow keys without prefix key to switch panes +bind -n C-Left select-pane -L +bind -n C-Right select-pane -R +bind -n C-Up select-pane -U +bind -n C-Down select-pane -D # Pane resizing with HJKL bind H resize-pane -L 10