diff options
author | 2016-01-02 17:16:25 +0000 | |
---|---|---|
committer | 2016-01-02 17:16:25 +0000 | |
commit | 6d6e1a22c72d868028542f217b217b697b20939d (patch) | |
tree | ffbfc7c8d85eb1d4dd0a0311fa7ea5d0b691c919 /usr.bin/tmux/cmd-copy-mode.c | |
parent | fix typo in comment, found by Michal Mazurek, thanks (diff) | |
download | wireguard-openbsd-6d6e1a22c72d868028542f217b217b697b20939d.tar.xz wireguard-openbsd-6d6e1a22c72d868028542f217b217b697b20939d.zip |
clock-mode needs CMD_PANE.
Diffstat (limited to 'usr.bin/tmux/cmd-copy-mode.c')
-rw-r--r-- | usr.bin/tmux/cmd-copy-mode.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/usr.bin/tmux/cmd-copy-mode.c b/usr.bin/tmux/cmd-copy-mode.c index 3e83b2764f5..43e2e09a38b 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.24 2015/12/14 00:31:54 nicm Exp $ */ +/* $OpenBSD: cmd-copy-mode.c,v 1.25 2016/01/02 17:16:25 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -46,6 +46,8 @@ const struct cmd_entry cmd_clock_mode_entry = { .args = { "t:", 0, 0 }, .usage = CMD_TARGET_PANE_USAGE, + .tflag = CMD_PANE, + .flags = 0, .exec = cmd_copy_mode_exec }; |