From d30c143c5dc6fdb32ca8830d308487f118d03e5b Mon Sep 17 00:00:00 2001 From: Fernando Schauenburg Date: Tue, 13 Feb 2024 00:12:11 +0100 Subject: [PATCH] tmux: restore . and , to move between windows This is more ergonomic and it turns out that my muscle memory is really strong on this one... --- config/tmux/tmux.conf | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/config/tmux/tmux.conf b/config/tmux/tmux.conf index 61da7b2..67fbd08 100644 --- a/config/tmux/tmux.conf +++ b/config/tmux/tmux.conf @@ -17,9 +17,9 @@ bind S command-prompt 'rename-session %%' bind s set synchronize-panes # Move around -bind ^ last-window -bind -r C-n next-window -bind -r C-p previous-window +bind -r . next-window +bind -r , previous-window +bind / last-window bind h select-pane -L bind j select-pane -D bind k select-pane -U