about summary refs log tree commit diff
path: root/Completion/Builtins
diff options
context:
space:
mode:
authorSven Wischnowsky <wischnow@users.sourceforge.net>2000-05-03 12:26:20 +0000
committerSven Wischnowsky <wischnow@users.sourceforge.net>2000-05-03 12:26:20 +0000
commitcdbbb405de3a179e70ad6e9d5e324c6c6f5d04e8 (patch)
treebaf896a6aadceaa1ce85940662b46a90a7dcefa4 /Completion/Builtins
parent70e5b622fff4d3218106fb10f146200576b1f787 (diff)
downloadzsh-cdbbb405de3a179e70ad6e9d5e324c6c6f5d04e8.tar.gz
zsh-cdbbb405de3a179e70ad6e9d5e324c6c6f5d04e8.tar.xz
zsh-cdbbb405de3a179e70ad6e9d5e324c6c6f5d04e8.zip
Andrej: handle -t option in _zcompile (11067)
Diffstat (limited to 'Completion/Builtins')
-rw-r--r--Completion/Builtins/_zcompile17
1 files changed, 9 insertions, 8 deletions
diff --git a/Completion/Builtins/_zcompile b/Completion/Builtins/_zcompile
index c82226dc2..af2b2553e 100644
--- a/Completion/Builtins/_zcompile
+++ b/Completion/Builtins/_zcompile
@@ -4,14 +4,15 @@ local context state line expl
 typeset -A opt_args
 
 _arguments -s \
-    '(-c -m -a)-U[don'\''t expand aliases]' \
-    '(-M)-R[mark as read]' \
-    '(-R)-M[mark as mapped]' \
-    '(-c -z -m -a)-k[ksh-style autoloading]' \
-    '(-c -k -m -a)-z[zsh-style autoloading]' \
-    '(-U -z -k)-c[currently defined functions]' \
-    '(-U -z -k)-m[use names as patterns]' \
-    '(-U -z -k)-a[write autoload functions]' \
+    '(-t -c -m -a)-U[don'\''t expand aliases]' \
+    '(-t -M)-R[mark as read]' \
+    '(-t -R)-M[mark as mapped]' \
+    '(-t -c -z -m -a)-k[ksh-style autoloading]' \
+    '(-t -c -k -m -a)-z[zsh-style autoloading]' \
+    '(-t -U -z -k)-c[currently defined functions]' \
+    '(-t -U -z -k)-m[use names as patterns]' \
+    '(-t -U -z -k)-a[write autoload functions]' \
+    '(-M -R -U -z -k -a -c -m)-t[show table of contents]' \
     ':zwc file:_files' \
     '*:function:->function' && return 0