tmux: Use Ctrl-arrow keys to switch panes

This commit is contained in:
Sanchayan Maity 2021-12-20 16:00:46 +05:30
parent 64358a0170
commit 5111831300

View file

@ -38,11 +38,11 @@ set-option -g allow-rename off
set -g mouse on set -g mouse on
set -g focus-events on set -g focus-events on
# Use Alt-arrow keys without prefix key to switch panes # Use Ctrl-arrow keys without prefix key to switch panes
bind -n M-h select-pane -L bind -n C-Left select-pane -L
bind -n M-l select-pane -R bind -n C-Right select-pane -R
bind -n M-k select-pane -U bind -n C-Up select-pane -U
bind -n M-j select-pane -D bind -n C-Down select-pane -D
# Pane resizing with HJKL # Pane resizing with HJKL
bind H resize-pane -L 10 bind H resize-pane -L 10