diff options
author | Nicholas Marriott <nicm@cvs.openbsd.org> | 2010-03-02 00:32:42 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@cvs.openbsd.org> | 2010-03-02 00:32:42 +0000 |
commit | ff35626491e806b44f055b355277d2e9beeb458b (patch) | |
tree | 87281610ee0a84618d7f7d364645f5a1cd7d9f37 /usr.bin/tmux/tmux.h | |
parent | 56342f8fd286788a0d8a3cb303eb2e462abdce6f (diff) |
Permit keys in copy mode to be prefixed by a repeat count, entered with
[1-9] in vi mode, or M-[1-9] in emacs mode.
From Micah Cowan, tweaked a little by me.
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 9c650c47899..3104133a0c3 100644 --- a/usr.bin/tmux/tmux.h +++ b/usr.bin/tmux/tmux.h @@ -1,4 +1,4 @@ -/* $OpenBSD: tmux.h,v 1.208 2010/02/19 00:03:21 nicm Exp $ */ +/* $OpenBSD: tmux.h,v 1.209 2010/03/02 00:32:41 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -477,6 +477,7 @@ enum mode_key_cmd { MODEKEYCOPY_SEARCHDOWN, MODEKEYCOPY_SEARCHREVERSE, MODEKEYCOPY_SEARCHUP, + MODEKEYCOPY_STARTNUMBERPREFIX, MODEKEYCOPY_STARTOFLINE, MODEKEYCOPY_STARTSELECTION, MODEKEYCOPY_TOPLINE, |