From ce01b6e0d6302fcfff55b74fb14000c65d5e1061 Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Wed, 11 Feb 2026 14:17:32 +0100 Subject: [PATCH] Improve navigation ease --- config/tmux/tmux.conf | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/config/tmux/tmux.conf b/config/tmux/tmux.conf index 1764e5aa..bd94a5f2 100644 --- a/config/tmux/tmux.conf +++ b/config/tmux/tmux.conf @@ -62,6 +62,20 @@ bind - split-window -v -c "#{pane_current_path}" # New windows in same directory bind c new-window -c "#{pane_current_path}" +# Pane navigation +bind -n C-S-Left select-pane -L +bind -n C-S-Right select-pane -R +bind -n C-S-Up select-pane -U +bind -n C-S-Down select-pane -D + +# Window navigation +bind -n C-M-Left previous-window +bind -n C-M-Right next-window + +# Session navigation +bind -n C-M-Up switch-client -p +bind -n C-M-Down switch-client -n + # Sessions bind C new-session bind X kill-session