From 527819b7506f07bc993528c22a8f2a79bdfca108 Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Tue, 10 Feb 2026 11:30:03 +0100 Subject: [PATCH] Rely on alt-arrow doing 5s, then shift-arrow does 1s --- config/tmux/tmux.conf | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/config/tmux/tmux.conf b/config/tmux/tmux.conf index 3122c36b..1764e5aa 100644 --- a/config/tmux/tmux.conf +++ b/config/tmux/tmux.conf @@ -50,10 +50,10 @@ bind -T copy-mode-vi v send -X begin-selection bind -T copy-mode-vi y send -X copy-selection-and-cancel # Pane resizing -bind -r S-Left resize-pane -L 10 -bind -r S-Down resize-pane -D 10 -bind -r S-Up resize-pane -U 10 -bind -r S-Right resize-pane -R 10 +bind -r S-Left resize-pane -L 1 +bind -r S-Down resize-pane -D 1 +bind -r S-Up resize-pane -U 1 +bind -r S-Right resize-pane -R 1 # Saner splits that open in the same directory bind | split-window -h -c "#{pane_current_path}"