1
0
mirror of git://git.code.sf.net/p/zsh/code synced 2024-10-03 17:31:33 +02:00
zsh/Completion/Builtins/_autoload

11 lines
210 B
Plaintext
Raw Normal View History

2000-04-01 22:43:43 +02:00
#compdef autoload
1999-04-15 20:05:38 +02:00
2000-04-01 22:43:43 +02:00
local expl
if (( $words[(I)[-+]*w*] )); then
_description files expl 'zwc file'
_files "$expl[@]" -g '*.zwc'
else
_wanted functions expl 'shell function' compadd - ${^fpath}/*(N:t)
fi