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.
This commit is contained in:
parent
9fae598106
commit
7426716732
1 changed files with 8 additions and 8 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue