about summary refs log tree commit diff
path: root/Functions
diff options
context:
space:
mode:
authorBart Schaefer <barts@users.sourceforge.net>2000-07-26 09:24:24 +0000
committerBart Schaefer <barts@users.sourceforge.net>2000-07-26 09:24:24 +0000
commit714efe5ff99f6d498ec1733648d130bdc414466d (patch)
treefb1d711e85c4ad67f28860770f6dd835a9b717c1 /Functions
parentf303f2ea63ce70f63355349bc0130ddb04a251f8 (diff)
downloadzsh-714efe5ff99f6d498ec1733648d130bdc414466d.tar.gz
zsh-714efe5ff99f6d498ec1733648d130bdc414466d.tar.xz
zsh-714efe5ff99f6d498ec1733648d130bdc414466d.zip
Enable the insert-tab style in zed.
Diffstat (limited to 'Functions')
-rw-r--r--Functions/Misc/zed5
1 files changed, 5 insertions, 0 deletions
diff --git a/Functions/Misc/zed b/Functions/Misc/zed
index e8e7212ef..dbf680270 100644
--- a/Functions/Misc/zed
+++ b/Functions/Misc/zed
@@ -19,6 +19,11 @@ integer TMOUT=0
 
 [[ -z "$1" ]] && echo 'Usage: "zed filename" or "zed -f function"' && return 1
 
+local curcontext=zed:::
+
+zstyle -m ":completion:zed:*" insert-tab '*' ||
+    zstyle ":completion:zed:*" insert-tab yes
+
 # catch interrupts
 cleanup="$(bindkey -L "^M"; bindkey -L -M emacs "^X^W"; bindkey -aL "ZZ"
     echo "trap - INT EXIT"; trap)"