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:
Fernando Schauenburg 2022-10-24 10:13:28 +02:00
parent 37f14fc23a
commit b870ca983d

View file

@ -16,18 +16,18 @@ bind n command-prompt 'rename-window %%'
bind N command-prompt 'rename-session %%'
# Move around
bind -r . next-window
bind -r , previous-window
bind -r C-h select-pane -L
bind -r C-j select-pane -D
bind -r C-k select-pane -U
bind -r C-l select-pane -R
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
# Resize panes
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
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
# Arrangement of panes
bind b break-pane \; select-pane -m \; last-window