diff options
author | 2010-02-11 20:39:40 +0000 | |
---|---|---|
committer | 2010-02-11 20:39:40 +0000 | |
commit | 701844c258665a3e37c7c5a2789cb318b7ce3792 (patch) | |
tree | 2dc1f13e0f6891d1913c6468c7418e945fe12867 /usr.bin/tmux/tmux.h | |
parent | correct comment (diff) | |
download | wireguard-openbsd-701844c258665a3e37c7c5a2789cb318b7ce3792.tar.xz wireguard-openbsd-701844c258665a3e37c7c5a2789cb318b7ce3792.zip |
Add "N" key to search the opposite way from the last search (reverse of "n"),
from Micah Cowan.
Diffstat (limited to 'usr.bin/tmux/tmux.h')
-rw-r--r-- | usr.bin/tmux/tmux.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/tmux/tmux.h b/usr.bin/tmux/tmux.h index 3766e45adf2..446cd5bd10e 100644 --- a/usr.bin/tmux/tmux.h +++ b/usr.bin/tmux/tmux.h @@ -1,4 +1,4 @@ -/* $OpenBSD: tmux.h,v 1.206 2010/02/06 23:22:27 nicm Exp $ */ +/* $OpenBSD: tmux.h,v 1.207 2010/02/11 20:39:40 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -475,6 +475,7 @@ enum mode_key_cmd { MODEKEYCOPY_SCROLLUP, MODEKEYCOPY_SEARCHAGAIN, MODEKEYCOPY_SEARCHDOWN, + MODEKEYCOPY_SEARCHREVERSE, MODEKEYCOPY_SEARCHUP, MODEKEYCOPY_STARTOFLINE, MODEKEYCOPY_STARTSELECTION, |