diff options
author | 2010-01-27 20:18:52 +0000 | |
---|---|---|
committer | 2010-01-27 20:18:52 +0000 | |
commit | b7d080eaae9f9ccea1799f9316f6084714615230 (patch) | |
tree | f69aec8291b436333435c258258cf1c7e2f939dc /usr.bin/tmux/tmux.h | |
parent | add missing "p" flag to getopt optstring; (diff) | |
download | wireguard-openbsd-b7d080eaae9f9ccea1799f9316f6084714615230.tar.xz wireguard-openbsd-b7d080eaae9f9ccea1799f9316f6084714615230.zip |
Alter next-word to have vi-like movement behaviour, and add next-word-end with
the existing emacs behaviour. 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 ddf1dfd15ae..ff317275d3f 100644 --- a/usr.bin/tmux/tmux.h +++ b/usr.bin/tmux/tmux.h @@ -1,4 +1,4 @@ -/* $OpenBSD: tmux.h,v 1.199 2010/01/25 21:33:39 nicm Exp $ */ +/* $OpenBSD: tmux.h,v 1.200 2010/01/27 20:18:52 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -461,6 +461,7 @@ enum mode_key_cmd { MODEKEYCOPY_MIDDLELINE, MODEKEYCOPY_NEXTPAGE, MODEKEYCOPY_NEXTWORD, + MODEKEYCOPY_NEXTWORDEND, MODEKEYCOPY_PREVIOUSPAGE, MODEKEYCOPY_PREVIOUSWORD, MODEKEYCOPY_RIGHT, |