1
0
mirror of git://git.code.sf.net/p/zsh/code synced 2024-10-01 16:31:53 +02:00
zsh/Completion/Base/Core/_wanted

14 lines
183 B
Plaintext
Raw Normal View History

2001-04-02 13:05:04 +02:00
#autoload
2003-04-25 13:18:50 +02:00
local -a __targs __gopt
2001-04-02 13:05:04 +02:00
zparseopts -D -a __gopt 1 2 V J x C:=__targs
2001-04-02 13:05:04 +02:00
_tags "$__targs[@]" "$1"
while _tags; do
_all_labels "$__gopt[@]" "$@" && return 0
2001-04-02 13:05:04 +02:00
done
return 1