From dfec1f2e334c5d2b3b1bd6c9fb1158c70142fb1d Mon Sep 17 00:00:00 2001 From: Sven Wischnowsky Date: Mon, 2 Apr 2001 11:32:39 +0000 Subject: moved to Completion/Zsh/Command/_zcompile --- Completion/Builtins/_zcompile | 26 -------------------------- 1 file changed, 26 deletions(-) delete mode 100644 Completion/Builtins/_zcompile diff --git a/Completion/Builtins/_zcompile b/Completion/Builtins/_zcompile deleted file mode 100644 index 2d8e6d033..000000000 --- a/Completion/Builtins/_zcompile +++ /dev/null @@ -1,26 +0,0 @@ -#compdef zcompile - -local state line expl curcontext="$curcontext" ret=1 -typeset -A opt_args - -_arguments -C -s -A "-*" -S \ - '(-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' && ret=0 - -if (( $+opt_args[-c] )); then - _wanted functions expl 'function to write' compadd -k functions && ret=0 -else - _description files expl 'zsh source file' - _files "$expl[@]" && ret=0 -fi - -return ret -- cgit 1.4.1