diff options
author | Sven Wischnowsky <wischnow@users.sourceforge.net> | 2000-05-03 12:26:20 +0000 |
---|---|---|
committer | Sven Wischnowsky <wischnow@users.sourceforge.net> | 2000-05-03 12:26:20 +0000 |
commit | cdbbb405de3a179e70ad6e9d5e324c6c6f5d04e8 (patch) | |
tree | baf896a6aadceaa1ce85940662b46a90a7dcefa4 /Completion/Builtins/_zcompile | |
parent | 70e5b622fff4d3218106fb10f146200576b1f787 (diff) | |
download | zsh-cdbbb405de3a179e70ad6e9d5e324c6c6f5d04e8.tar.gz zsh-cdbbb405de3a179e70ad6e9d5e324c6c6f5d04e8.tar.xz zsh-cdbbb405de3a179e70ad6e9d5e324c6c6f5d04e8.zip |
Andrej: handle -t option in _zcompile (11067)
Diffstat (limited to 'Completion/Builtins/_zcompile')
-rw-r--r-- | Completion/Builtins/_zcompile | 17 |
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 |