diff options
author | 2009-07-13 18:44:17 +0000 | |
---|---|---|
committer | 2009-07-13 18:44:17 +0000 | |
commit | cc90975683a08e2eac7ba3eee6ff3776a310ab03 (patch) | |
tree | 589f8c54a93665b1426ef3a86b8261327a4c9113 /usr.bin/tmux/cmd-copy-mode.c | |
parent | Tidy up and improve target (-t) argument parsing: (diff) | |
download | wireguard-openbsd-cc90975683a08e2eac7ba3eee6ff3776a310ab03.tar.xz wireguard-openbsd-cc90975683a08e2eac7ba3eee6ff3776a310ab03.zip |
copy-mode and scroll-mode have a -u flag missing from usage, add it.
Diffstat (limited to 'usr.bin/tmux/cmd-copy-mode.c')
-rw-r--r-- | usr.bin/tmux/cmd-copy-mode.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/tmux/cmd-copy-mode.c b/usr.bin/tmux/cmd-copy-mode.c index bba05e3a591..ca73b4c693a 100644 --- a/usr.bin/tmux/cmd-copy-mode.c +++ b/usr.bin/tmux/cmd-copy-mode.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cmd-copy-mode.c,v 1.2 2009/06/29 07:11:20 nicm Exp $ */ +/* $OpenBSD: cmd-copy-mode.c,v 1.3 2009/07/13 18:44:17 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -28,7 +28,7 @@ int cmd_copy_mode_exec(struct cmd *, struct cmd_ctx *); const struct cmd_entry cmd_copy_mode_entry = { "copy-mode", NULL, - CMD_TARGET_WINDOW_USAGE, + "[-u] " CMD_TARGET_WINDOW_USAGE, CMD_UFLAG, cmd_target_init, cmd_target_parse, |