about summary refs log tree commit diff
path: root/Src
diff options
context:
space:
mode:
authorJun T <takimoto-j@kba.biglobe.ne.jp>2015-08-11 13:22:45 +0200
committerOliver Kiddle <opk@zsh.org>2015-08-11 13:22:45 +0200
commit0f224e72cc0ffaf72ec18c88611c41b33f2be955 (patch)
treedb8dddbb52af3715328cc84b0e474769f287996e /Src
parentbde91914df8fcbe1c53a575518f4f59a3996c0b0 (diff)
downloadzsh-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')
-rw-r--r--Src/Zle/zle_bindings.c2
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,