diff options
author | Nicholas Marriott <nicm@cvs.openbsd.org> | 2019-03-14 06:36:22 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@cvs.openbsd.org> | 2019-03-14 06:36:22 +0000 |
commit | 282f4f4a5a8d070218aed26abbac2a9b62d13505 (patch) | |
tree | 7562cb276e2502770d93316035263efdd84d28db /usr.bin/tmux | |
parent | 41ac62a7f3704f8d84e1df89d28a78639f9f60e0 (diff) |
Missing space in capture-pane usage, from Ben Boeckel.
Also man page fixed from jmc.
Diffstat (limited to 'usr.bin/tmux')
-rw-r--r-- | usr.bin/tmux/cmd-capture-pane.c | 4 | ||||
-rw-r--r-- | usr.bin/tmux/tmux.1 | 11 |
2 files changed, 8 insertions, 7 deletions
diff --git a/usr.bin/tmux/cmd-capture-pane.c b/usr.bin/tmux/cmd-capture-pane.c index 4ba9030753b..b8550881a56 100644 --- a/usr.bin/tmux/cmd-capture-pane.c +++ b/usr.bin/tmux/cmd-capture-pane.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cmd-capture-pane.c,v 1.46 2019/03/12 11:16:49 nicm Exp $ */ +/* $OpenBSD: cmd-capture-pane.c,v 1.47 2019/03/14 06:36:21 nicm Exp $ */ /* * Copyright (c) 2009 Jonathan Alvarado <radobobo@users.sourceforge.net> @@ -41,7 +41,7 @@ const struct cmd_entry cmd_capture_pane_entry = { .args = { "ab:CeE:JpPqS:t:", 0, 0 }, .usage = "[-aCeJpPq] " CMD_BUFFER_USAGE " [-E end-line] " - "[-S start-line]" CMD_TARGET_PANE_USAGE, + "[-S start-line] " CMD_TARGET_PANE_USAGE, .target = { 't', CMD_FIND_PANE, 0 }, diff --git a/usr.bin/tmux/tmux.1 b/usr.bin/tmux/tmux.1 index d50b6d75ddf..ce18475684c 100644 --- a/usr.bin/tmux/tmux.1 +++ b/usr.bin/tmux/tmux.1 @@ -1,4 +1,4 @@ -.\" $OpenBSD: tmux.1,v 1.618 2019/03/13 15:37:28 nicm Exp $ +.\" $OpenBSD: tmux.1,v 1.619 2019/03/14 06:36:21 nicm Exp $ .\" .\" Copyright (c) 2007 Nicholas Marriott <nicholas.marriott@gmail.com> .\" @@ -14,7 +14,7 @@ .\" IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING .\" OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. .\" -.Dd $Mdocdate: March 13 2019 $ +.Dd $Mdocdate: March 14 2019 $ .Dt TMUX 1 .Os .Sh NAME @@ -3724,9 +3724,10 @@ option rather than the content itself. or .Ql P: will loop over each session, window or pane and insert the format once -for each. For windows and panes, two comma-separated formats may be -given, the second is used for the current window or active pane. For -example to get a list of windows formatted like the status line: +for each. +For windows and panes, two comma-separated formats may be given: +the second is used for the current window or active pane. +For example, to get a list of windows formatted like the status line: .Bd -literal -offset indent #{W:#{E:window-status-format} ,#{E:window-status-current-format} } .Ed |