diff options
author | Oliver Kiddle <opk@zsh.org> | 2014-12-08 17:23:23 +0100 |
---|---|---|
committer | Oliver Kiddle <opk@zsh.org> | 2014-12-08 17:24:48 +0100 |
commit | 88f4e24d4c42de1072898cd0e26e3d43c7de448c (patch) | |
tree | 326ea242e10e31ece5279ae9049abb19f01a1574 /Src/Zle/zle.h | |
parent | 53e44daeba8481858cded683a780841085f36988 (diff) | |
download | zsh-88f4e24d4c42de1072898cd0e26e3d43c7de448c.tar.gz zsh-88f4e24d4c42de1072898cd0e26e3d43c7de448c.tar.xz zsh-88f4e24d4c42de1072898cd0e26e3d43c7de448c.zip |
33924: allow vi line/characterwise mode to be forced
Diffstat (limited to 'Src/Zle/zle.h')
-rw-r--r-- | Src/Zle/zle.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Src/Zle/zle.h b/Src/Zle/zle.h index 8a85ee342..a46b52ded 100644 --- a/Src/Zle/zle.h +++ b/Src/Zle/zle.h @@ -243,6 +243,8 @@ struct modifier { #define MOD_VIAPP (1<<3) /* appending to the vi cut buffer */ #define MOD_NEG (1<<4) /* last command was negate argument */ #define MOD_NULL (1<<5) /* throw away text for the vi cut buffer */ +#define MOD_CHAR (1<<6) /* force character-wise movement */ +#define MOD_LINE (1<<7) /* force line-wise movement */ /* current modifier status */ |