mirror of
git://git.code.sf.net/p/zsh/code
synced 2024-11-19 13:33:52 +01:00
11 lines
210 B
Plaintext
11 lines
210 B
Plaintext
#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}/*(N:t)
|
|
fi
|