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
1 changed files with 5 additions and 5 deletions

View File

@ -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