Rename new-pane -B to -W since -B is best kept to match -B to

display-popup.
This commit is contained in:
nicm
2026-06-10 16:03:14 +00:00
parent c019b3dad9
commit 2719549cf2
5 changed files with 20 additions and 20 deletions

8
tmux.1
View File

@@ -3412,7 +3412,7 @@ but a different format may be specified with
.Fl F .
.Tg newp
.It Xo Ic new\-pane
.Op Fl bBdefhIkPvZ
.Op Fl bdefhIkPvWZ
.Op Fl c Ar start\-directory
.Op Fl e Ar environment
.Op Fl F Ar format
@@ -3488,13 +3488,13 @@ but also sets the
option for this pane to
.Ar message .
.Pp
.Fl B
blocks until
.Fl W
Waits until
.Ar shell\-command
exits, then returns its exit status.
For example:
.Bd -literal -offset indent
$ tmux new-pane -B 'vi afile'
$ tmux new-pane -W 'vi afile'
$ echo $?
0
.Ed