From 176d97581e245a36f3916c490c2227687d5d2d8c Mon Sep 17 00:00:00 2001 From: Iain Patterson Date: Tue, 19 Oct 2010 10:11:35 +0100 Subject: [PATCH] Corrected join-pane bind. The intention was that C-b would move the designated window into the current window but the command was incorrectly written such that the active pane would be moved into the designated window instead. --- .tmux.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.tmux.conf b/.tmux.conf index 8de9f0f..60cfd34 100644 --- a/.tmux.conf +++ b/.tmux.conf @@ -60,7 +60,7 @@ bind = display-panes # Move the current pane into a separate window. bind b break-pane # Split another pane into this window. -bind B command-prompt -p "Select [.] to join:" 'join-pane -t %1' +bind B command-prompt -p "Select [.] to join:" 'join-pane -s %1' # Next pane. bind i select-pane -t :.+ bind C-i select-pane -t :.+ -- 2.20.1