summaryrefslogtreecommitdiffstats
path: root/usr.bin/tmux/cmd-copy-mode.c
diff options
context:
space:
mode:
authornicm <nicm@openbsd.org>2020-03-12 13:19:20 +0000
committernicm <nicm@openbsd.org>2020-03-12 13:19:20 +0000
commite51b191a3b897801a3edbfba71d3be2bc64a2af2 (patch)
tree7b0348b9a913d2edd72de9087ab940106b7105ae /usr.bin/tmux/cmd-copy-mode.c
parentChange how double and triple clicks works so that one or the other is (diff)
downloadwireguard-openbsd-e51b191a3b897801a3edbfba71d3be2bc64a2af2.tar.xz
wireguard-openbsd-e51b191a3b897801a3edbfba71d3be2bc64a2af2.zip
Add a copy-mode -H flag to hide the position marker in the top right.
Diffstat (limited to 'usr.bin/tmux/cmd-copy-mode.c')
-rw-r--r--usr.bin/tmux/cmd-copy-mode.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/tmux/cmd-copy-mode.c b/usr.bin/tmux/cmd-copy-mode.c
index 8e9cb0c04be..22dd9bd731d 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.38 2019/05/07 11:24:03 nicm Exp $ */
+/* $OpenBSD: cmd-copy-mode.c,v 1.39 2020/03/12 13:19:20 nicm Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicholas.marriott@gmail.com>
@@ -30,8 +30,8 @@ const struct cmd_entry cmd_copy_mode_entry = {
.name = "copy-mode",
.alias = NULL,
- .args = { "Met:u", 0, 0 },
- .usage = "[-Mu] " CMD_TARGET_PANE_USAGE,
+ .args = { "eHMt:u", 0, 0 },
+ .usage = "[-eHMu] " CMD_TARGET_PANE_USAGE,
.target = { 't', CMD_FIND_PANE, 0 },