1
0
mirror of git://git.code.sf.net/p/zsh/code synced 2024-10-03 09:21:19 +02:00
zsh/Completion/Core/_next_label
2000-05-22 18:15:53 +00:00

26 lines
494 B
Plaintext

#autoload
local gopt=-J descr spec
if [[ "$1" = -([12]|)[VJ] ]]; then
gopt="$1"
shift
fi
if comptags -A "$1" curtag spec; then
_comp_tags="$_comp_tags $spec "
if [[ "$curtag" = *:* ]]; then
zformat -f descr "${curtag#*:}" "d:$3"
_description "$gopt" "${curtag%:*}" "$2" "$descr"
curtag="${curtag%:*}"
set -A $2 "${(P@)2}" "${argv[4,-1][@]}"
else
_description "$gopt" "$curtag" "$2" "$3"
set -A $2 "${argv[4,-1][@]}" "${(P@)2}"
fi
return 0
fi
return 1