From b870ca983da444995458b23635fff03252f7c115 Mon Sep 17 00:00:00 2001 From: Fernando Schauenburg Date: Mon, 24 Oct 2022 10:13:28 +0200 Subject: [PATCH] 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 --- config/tmux/tmux.conf | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/config/tmux/tmux.conf b/config/tmux/tmux.conf index 39b8448..b4e026f 100644 --- a/config/tmux/tmux.conf +++ b/config/tmux/tmux.conf @@ -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