diff options
author | 2010-02-01 22:15:51 +0000 | |
---|---|---|
committer | 2010-02-01 22:15:51 +0000 | |
commit | 4db190b11814537fe2e4ee6efeea99e66676e1ab (patch) | |
tree | 662bfeb8e21dcc6ac1f80abab30ff859b92ffa21 /usr.bin/tmux/tmux.h | |
parent | - add and enable puc(4) (only com, i didn't test lpt) (diff) | |
download | wireguard-openbsd-4db190b11814537fe2e4ee6efeea99e66676e1ab.tar.xz wireguard-openbsd-4db190b11814537fe2e4ee6efeea99e66676e1ab.zip |
Add scroll-up/scroll-down for choose/more mode, from Micah Cowan.
Diffstat (limited to 'usr.bin/tmux/tmux.h')
-rw-r--r-- | usr.bin/tmux/tmux.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/usr.bin/tmux/tmux.h b/usr.bin/tmux/tmux.h index ff317275d3f..477c1bb74c7 100644 --- a/usr.bin/tmux/tmux.h +++ b/usr.bin/tmux/tmux.h @@ -1,4 +1,4 @@ -/* $OpenBSD: tmux.h,v 1.200 2010/01/27 20:18:52 nicm Exp $ */ +/* $OpenBSD: tmux.h,v 1.201 2010/02/01 22:15:51 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -442,6 +442,8 @@ enum mode_key_cmd { MODEKEYCHOICE_DOWN, MODEKEYCHOICE_PAGEDOWN, MODEKEYCHOICE_PAGEUP, + MODEKEYCHOICE_SCROLLDOWN, + MODEKEYCHOICE_SCROLLUP, MODEKEYCHOICE_UP, /* Copy keys. */ |