summaryrefslogtreecommitdiff
path: root/usr.bin/tmux
diff options
context:
space:
mode:
authorNicholas Marriott <nicm@cvs.openbsd.org>2012-11-19 10:51:26 +0000
committerNicholas Marriott <nicm@cvs.openbsd.org>2012-11-19 10:51:26 +0000
commit77eca4549b1e2d69a96627f605fd8956de3826e5 (patch)
treee19e50f3277cf313a10ff44ac20af1214ead8ef9 /usr.bin/tmux
parentc3c2f072c05813476b3d8cc4ab8912c6fcf4d29c (diff)
Add halfpage commands to mode command string table (missed by accident),
from Thomas Adam.
Diffstat (limited to 'usr.bin/tmux')
-rw-r--r--usr.bin/tmux/mode-key.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/usr.bin/tmux/mode-key.c b/usr.bin/tmux/mode-key.c
index 2c81dc3894b..0392527d27b 100644
--- a/usr.bin/tmux/mode-key.c
+++ b/usr.bin/tmux/mode-key.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: mode-key.c,v 1.49 2012/10/09 18:08:21 nicm Exp $ */
+/* $OpenBSD: mode-key.c,v 1.50 2012/11/19 10:51:25 nicm Exp $ */
/*
* Copyright (c) 2008 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -105,6 +105,8 @@ const struct mode_key_cmdstr mode_key_cmdstr_copy[] = {
{ MODEKEYCOPY_DOWN, "cursor-down" },
{ MODEKEYCOPY_ENDOFLINE, "end-of-line" },
{ MODEKEYCOPY_GOTOLINE, "goto-line" },
+ { MODEKEYCOPY_HALFPAGEDOWN, "halfpage-down" },
+ { MODEKEYCOPY_HALFPAGEUP, "halfpage-up" },
{ MODEKEYCOPY_HISTORYBOTTOM, "history-bottom" },
{ MODEKEYCOPY_HISTORYTOP, "history-top" },
{ MODEKEYCOPY_JUMP, "jump-forward" },