diff options
author | Sven Wischnowsky <wischnow@users.sourceforge.net> | 2001-04-02 11:25:35 +0000 |
---|---|---|
committer | Sven Wischnowsky <wischnow@users.sourceforge.net> | 2001-04-02 11:25:35 +0000 |
commit | e056b8daea0fc351328c902a05fd86ea334ae03e (patch) | |
tree | 806b6a84cb6126594e884f6a4410bcadb87e067f /Completion | |
parent | 3b9498f5731018665c1a5f15a02b95e5e8e0908a (diff) | |
download | zsh-e056b8daea0fc351328c902a05fd86ea334ae03e.tar.gz zsh-e056b8daea0fc351328c902a05fd86ea334ae03e.tar.xz zsh-e056b8daea0fc351328c902a05fd86ea334ae03e.zip |
moved to Completion/Zsh/Command/_autoload
Diffstat (limited to 'Completion')
-rw-r--r-- | Completion/Builtins/_autoload | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/Completion/Builtins/_autoload b/Completion/Builtins/_autoload deleted file mode 100644 index 81ded019a..000000000 --- a/Completion/Builtins/_autoload +++ /dev/null @@ -1,10 +0,0 @@ -#compdef autoload - -local expl - -if (( $words[(I)[-+]*w*] )); then - _description files expl 'zwc file' - _files "$expl[@]" -g '*.zwc' -else - _wanted functions expl 'shell function' compadd - ${^fpath}/*(:t) -fi |