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 | |
| parent | 36067: fix typo and format in the documentation (diff) | |
| download | zsh-0f224e72cc0ffaf72ec18c88611c41b33f2be955.tar zsh-0f224e72cc0ffaf72ec18c88611c41b33f2be955.tar.gz zsh-0f224e72cc0ffaf72ec18c88611c41b33f2be955.tar.bz2 zsh-0f224e72cc0ffaf72ec18c88611c41b33f2be955.tar.lz zsh-0f224e72cc0ffaf72ec18c88611c41b33f2be955.tar.xz zsh-0f224e72cc0ffaf72ec18c88611c41b33f2be955.tar.zst 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')
| -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, |
