diff options
author | Nicholas Marriott <nicm@cvs.openbsd.org> | 2010-01-27 23:26:15 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@cvs.openbsd.org> | 2010-01-27 23:26:15 +0000 |
commit | 42b6e1a0846ffffcf70a6be1d36d391107560dba (patch) | |
tree | 5a048fb2c5af0dbee396fc39df95900e9923fc3e /usr.bin/tmux/mode-key.c | |
parent | 5df39cbcd72c377bfb8acc5a487b63e4400c2035 (diff) |
Actually bind the new key to e.
Diffstat (limited to 'usr.bin/tmux/mode-key.c')
-rw-r--r-- | usr.bin/tmux/mode-key.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/tmux/mode-key.c b/usr.bin/tmux/mode-key.c index 56b76bba7ba..c231f03ae70 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.28 2010/01/27 20:18:52 nicm Exp $ */ +/* $OpenBSD: mode-key.c,v 1.29 2010/01/27 23:26:14 nicm Exp $ */ /* * Copyright (c) 2008 Nicholas Marriott <nicm@users.sourceforge.net> @@ -185,6 +185,7 @@ const struct mode_key_entry mode_key_vi_copy[] = { { '\r', 0, MODEKEYCOPY_COPYSELECTION }, { '^', 0, MODEKEYCOPY_BACKTOINDENTATION }, { 'b', 0, MODEKEYCOPY_PREVIOUSWORD }, + { 'e', 0, MODEKEYCOPY_NEXTWORDEND }, { 'g', 0, MODEKEYCOPY_HISTORYTOP }, { 'h', 0, MODEKEYCOPY_LEFT }, { 'j', 0, MODEKEYCOPY_DOWN }, |