Fix prompt for join-pane.
authorIain Patterson <me@iain.cx>
Sun, 7 Aug 2011 11:30:14 +0000 (12:30 +0100)
committerIain Patterson <me@iain.cx>
Thu, 25 Aug 2011 10:05:37 +0000 (11:05 +0100)
The argument to join-pane is a pane specifier.  If no dot is used to
separate the window and pane parts, join-pane treats the argument as
a window and joins pane zero from that window.

Thus strictly speaking the pane part of the command prompt should be
shown as optional rather than the window part.

.tmux.conf

index dd5202a..d4077d3 100644 (file)
@@ -72,7 +72,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 [<window>.]<pane> to join:" 'join-pane -s %1'
+bind B command-prompt -p "Select <window>[.<pane>] to join:" 'join-pane -s %1'
 # Split vertically.
 bind C-\ split-window -v
 # Next pane.