tmux: revert navigation bindings
Even after allowing for some time to adjust my muscle memory, it turns out that I prefer the previous way of navigating. This reverts commits: - 1c51425d370cd25c1c189a054809557759028d19 - 7ef518901890c8979309fc23cf6b3293ef498dbb
This commit is contained in:
parent
37f14fc23a
commit
b870ca983d
1 changed files with 10 additions and 10 deletions
|
@ -16,18 +16,18 @@ bind n command-prompt 'rename-window %%'
|
||||||
bind N command-prompt 'rename-session %%'
|
bind N command-prompt 'rename-session %%'
|
||||||
|
|
||||||
# Move around
|
# Move around
|
||||||
bind -r . next-window
|
bind . next-window
|
||||||
bind -r , previous-window
|
bind , previous-window
|
||||||
bind -r C-h select-pane -L
|
bind h select-pane -L
|
||||||
bind -r C-j select-pane -D
|
bind j select-pane -D
|
||||||
bind -r C-k select-pane -U
|
bind k select-pane -U
|
||||||
bind -r C-l select-pane -R
|
bind l select-pane -R
|
||||||
|
|
||||||
# Resize panes
|
# Resize panes
|
||||||
bind -r h resize-pane -L 1
|
bind -r C-h resize-pane -L 5
|
||||||
bind -r j resize-pane -D 1
|
bind -r C-j resize-pane -D 5
|
||||||
bind -r k resize-pane -U 1
|
bind -r C-k resize-pane -U 5
|
||||||
bind -r l resize-pane -R 1
|
bind -r C-l resize-pane -R 5
|
||||||
|
|
||||||
# Arrangement of panes
|
# Arrangement of panes
|
||||||
bind b break-pane \; select-pane -m \; last-window
|
bind b break-pane \; select-pane -m \; last-window
|
||||||
|
|
Loading…
Add table
Reference in a new issue