1
0
mirror of git://git.code.sf.net/p/zsh/code synced 2024-10-02 17:01:19 +02:00

moved from Completion/Builtins/_autoload

This commit is contained in:
Sven Wischnowsky 2001-04-02 11:25:43 +00:00
parent e056b8daea
commit eca1b931f5

@ -0,0 +1,10 @@
#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