diff options
author | Nicholas Marriott <nicm@cvs.openbsd.org> | 2015-06-17 19:56:09 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@cvs.openbsd.org> | 2015-06-17 19:56:09 +0000 |
commit | d1ffb859264992edbd10d918575f2740e8b5696a (patch) | |
tree | ce3aace50c330b4114d248e6336adf36a6120d82 /usr.bin/tmux/tmux.1 | |
parent | bc3669b12019c9b8147189abbae5629db39350e2 (diff) |
Change break-pane to take target and source panes (-t and -s) in line
with other commands, from Thomas Adam.
Diffstat (limited to 'usr.bin/tmux/tmux.1')
-rw-r--r-- | usr.bin/tmux/tmux.1 | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/usr.bin/tmux/tmux.1 b/usr.bin/tmux/tmux.1 index 9e5e0b484b8..fd934480e9a 100644 --- a/usr.bin/tmux/tmux.1 +++ b/usr.bin/tmux/tmux.1 @@ -1,4 +1,4 @@ -.\" $OpenBSD: tmux.1,v 1.439 2015/06/17 16:50:28 nicm Exp $ +.\" $OpenBSD: tmux.1,v 1.440 2015/06/17 19:56:08 nicm Exp $ .\" .\" Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> .\" @@ -1233,12 +1233,14 @@ Commands related to windows and panes are as follows: .It Xo Ic break-pane .Op Fl dP .Op Fl F Ar format -.Op Fl t Ar target-pane +.Op Fl s Ar src-pane +.Op Fl t Ar dst-pane .Xc .D1 (alias: Ic breakp ) Break -.Ar target-pane -off from its containing window to make it the only pane in a new window. +.Ar src-pane +off from its containing window to make it the only pane in +.Ar dst-window . If .Fl d is given, the new window does not become the current window. |