mirror of
git://git.code.sf.net/p/zsh/code
synced 2024-11-19 21:44:11 +01:00
16 lines
201 B
Plaintext
16 lines
201 B
Plaintext
#autoload
|
|
|
|
local __targs __gopt
|
|
|
|
__gopt=()
|
|
__tagrs=()
|
|
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
|