1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2025-01-21 12:11:26 +01:00
zsh/Completion/Base/Core/_wanted
2003-04-25 11:18:50 +00:00

13 lines
183 B
Text

#autoload
local -a __targs __gopt
zparseopts -D -a __gopt 1 2 V J x C:=__targs
_tags "$__targs[@]" "$1"
while _tags; do
_all_labels "$__gopt[@]" "$@" && return 0
done
return 1