diff options
author | Jun T <takimoto-j@kba.biglobe.ne.jp> | 2015-08-11 13:22:45 +0200 |
---|---|---|
committer | Oliver Kiddle <opk@zsh.org> | 2015-08-11 13:22:45 +0200 |
commit | 0f224e72cc0ffaf72ec18c88611c41b33f2be955 (patch) | |
tree | db8dddbb52af3715328cc84b0e474769f287996e /Src/Zle | |
parent | bde91914df8fcbe1c53a575518f4f59a3996c0b0 (diff) | |
download | zsh-0f224e72cc0ffaf72ec18c88611c41b33f2be955.tar.gz zsh-0f224e72cc0ffaf72ec18c88611c41b33f2be955.tar.xz zsh-0f224e72cc0ffaf72ec18c88611c41b33f2be955.zip |
35952: bind escape in vi mode so it is a full key sequence and later keys aren't dropped
Diffstat (limited to 'Src/Zle')
-rw-r--r-- | Src/Zle/zle_bindings.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Src/Zle/zle_bindings.c b/Src/Zle/zle_bindings.c index 2ae8c8764..55863db1b 100644 --- a/Src/Zle/zle_bindings.c +++ b/Src/Zle/zle_bindings.c @@ -317,7 +317,7 @@ int vicmdbind[128] = { /* ^X */ z_undefinedkey, /* ^Y */ z_undefinedkey, /* ^Z */ z_undefinedkey, - /* ^[ */ z_undefinedkey, + /* ^[ */ z_beep, /* ^\ */ z_undefinedkey, /* ^] */ z_undefinedkey, /* ^^ */ z_undefinedkey, |