tmux: Use arrow keys for pane resizing

This commit is contained in:
Sanchayan Maity 2022-03-11 12:39:46 +05:30
parent 050b56e901
commit 3f5bf6d4d1
1 changed files with 5 additions and 5 deletions

View File

@ -44,11 +44,11 @@ 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
bind J resize-pane -D 10
bind K resize-pane -U 10
bind L resize-pane -R 10
# Pane resizing with arrow keys
bind Left resize-pane -L 10
bind Down resize-pane -D 10
bind Up resize-pane -U 10
bind Right resize-pane -R 10
# Move windows back/forward
bind -n S-left swap-window -t -1