diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2009-02-21 17:46:13 +0000 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2009-02-21 17:46:13 +0000 |
commit | afd67ce89f91bd460b51c16108c92e3375d90402 (patch) | |
tree | aa9239533df0bb5e1c59f2d5c71db9ec3ac2ed23 /tmux.h | |
parent | 78f420e7a9806ff182c17dfa5161b3f0dc224efc (diff) | |
download | rtmux-afd67ce89f91bd460b51c16108c92e3375d90402.tar.gz rtmux-afd67ce89f91bd460b51c16108c92e3375d90402.tar.bz2 rtmux-afd67ce89f91bd460b51c16108c92e3375d90402.zip |
Allow selection in vi mode.
Diffstat (limited to 'tmux.h')
-rw-r--r-- | tmux.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -1,4 +1,4 @@ -/* $Id: tmux.h,v 1.273 2009-02-13 21:39:45 nicm Exp $ */ +/* $Id: tmux.h,v 1.274 2009-02-21 17:46:13 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -428,6 +428,7 @@ struct mode_key_data { int flags; #define MODEKEY_EDITMODE 0x1 #define MODEKEY_CANEDIT 0x2 +#define MODEKEY_CHOOSEMODE 0x4 }; #define MODEKEY_EMACS 0 |