diff options
author | Nicholas Marriott <nicm@cvs.openbsd.org> | 2011-12-04 16:18:02 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@cvs.openbsd.org> | 2011-12-04 16:18:02 +0000 |
commit | f53c94aeab6906e62b879eeb57b855c94502c375 (patch) | |
tree | 42aff82ba102749c425381434f5da021fc66b8fa /usr.bin/tmux/tmux.h | |
parent | 18c69ef820ce62c51b9abe064d2504dd8e12a3f7 (diff) |
Support "jump to" like vi in copy mode using t and T keys. Also add x
and X for delete in edit mode.
From Ben Boeckel, thanks.
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 0da30cc69e3..e9bd1b3d569 100644 --- a/usr.bin/tmux/tmux.h +++ b/usr.bin/tmux/tmux.h @@ -1,4 +1,4 @@ -/* $OpenBSD: tmux.h,v 1.299 2011/11/15 23:34:12 nicm Exp $ */ +/* $OpenBSD: tmux.h,v 1.300 2011/12/04 16:18:01 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -485,6 +485,8 @@ enum mode_key_cmd { MODEKEYCOPY_JUMPAGAIN, MODEKEYCOPY_JUMPREVERSE, MODEKEYCOPY_JUMPBACK, + MODEKEYCOPY_JUMPTO, + MODEKEYCOPY_JUMPTOBACK, MODEKEYCOPY_LEFT, MODEKEYCOPY_MIDDLELINE, MODEKEYCOPY_NEXTPAGE, |