From bae752a8a2eb15dd12d7e115928896793e6cb685 Mon Sep 17 00:00:00 2001 From: Fernando Schauenburg Date: Thu, 3 Jul 2025 12:41:13 +0200 Subject: [PATCH] tmux: automatically clear pane selection after join --- config/tmux/tmux.conf | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/config/tmux/tmux.conf b/config/tmux/tmux.conf index 4bc4ac5..2f9dc34 100644 --- a/config/tmux/tmux.conf +++ b/config/tmux/tmux.conf @@ -49,11 +49,12 @@ bind -r S-Up resize-pane -U 10 bind -r S-Right resize-pane -R 10 # Arrangement of panes & windows -bind b break-pane \; select-pane -m \; last-window -bind H join-pane -h -b -bind J join-pane -v -bind K join-pane -v -b -bind L join-pane -h +bind b break-pane -d +bind B break-pane +bind H join-pane -h -b \; select-pane -M +bind J join-pane -v \; select-pane -M +bind K join-pane -v -b \; select-pane -M +bind L join-pane -h \; select-pane -M bind -r > swap-window -d -t :+ bind -r < swap-window -d -t :-