diff options
| author | Oliver Kiddle <opk@zsh.org> | 2015-08-11 13:28:14 +0200 |
|---|---|---|
| committer | Oliver Kiddle <opk@zsh.org> | 2015-08-11 13:28:14 +0200 |
| commit | 3183cbd98c6f980a1d0d15227b12cf1caeb54e33 (patch) | |
| tree | 4fa5ae2dd9caa90f66e393a6ff69c5012ce38457 /Src/Zle/zle_move.c | |
| parent | 35952: bind escape in vi mode so it is a full key sequence and later keys are... (diff) | |
| download | zsh-3183cbd98c6f980a1d0d15227b12cf1caeb54e33.tar zsh-3183cbd98c6f980a1d0d15227b12cf1caeb54e33.tar.gz zsh-3183cbd98c6f980a1d0d15227b12cf1caeb54e33.tar.bz2 zsh-3183cbd98c6f980a1d0d15227b12cf1caeb54e33.tar.lz zsh-3183cbd98c6f980a1d0d15227b12cf1caeb54e33.tar.xz zsh-3183cbd98c6f980a1d0d15227b12cf1caeb54e33.tar.zst zsh-3183cbd98c6f980a1d0d15227b12cf1caeb54e33.zip | |
36044: deactivate-region widget for escape in visual mode
Diffstat (limited to 'Src/Zle/zle_move.c')
| -rw-r--r-- | Src/Zle/zle_move.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Src/Zle/zle_move.c b/Src/Zle/zle_move.c index d751c4333..cf8f34595 100644 --- a/Src/Zle/zle_move.c +++ b/Src/Zle/zle_move.c @@ -555,6 +555,13 @@ visuallinemode(UNUSED(char **args)) return 0; } +/**/ +int +deactivateregion(UNUSED(char **args)) +{ + region_active = 0; + return 0; +} /**/ int |
