2000-04-01 22:43:43 +02:00
|
|
|
#autoload
|
|
|
|
|
2000-05-31 11:38:25 +02:00
|
|
|
local __gopt=-J __descr __spec
|
2000-04-01 22:43:43 +02:00
|
|
|
|
|
|
|
if [[ "$1" = -([12]|)[VJ] ]]; then
|
2000-05-31 11:38:25 +02:00
|
|
|
__gopt="$1"
|
2000-04-01 22:43:43 +02:00
|
|
|
shift
|
|
|
|
fi
|
|
|
|
|
2000-05-31 11:38:25 +02:00
|
|
|
if comptags -A "$1" curtag __spec; then
|
|
|
|
_comp_tags="$_comp_tags $__spec "
|
2001-03-23 11:39:04 +01:00
|
|
|
if [[ "$curtag" = *[^\\]:* ]]; then
|
2000-05-31 11:38:25 +02:00
|
|
|
zformat -f __descr "${curtag#*:}" "d:$3"
|
|
|
|
_description "$__gopt" "${curtag%:*}" "$2" "$__descr"
|
2000-04-01 22:43:43 +02:00
|
|
|
curtag="${curtag%:*}"
|
2000-05-23 10:54:30 +02:00
|
|
|
set -A $2 "${(P@)2}" "${(@)argv[4,-1]}"
|
2000-04-01 22:43:43 +02:00
|
|
|
else
|
2000-05-31 11:38:25 +02:00
|
|
|
_description "$__gopt" "$curtag" "$2" "$3"
|
2000-05-23 10:54:30 +02:00
|
|
|
set -A $2 "${(@)argv[4,-1]}" "${(P@)2}"
|
2000-04-01 22:43:43 +02:00
|
|
|
fi
|
|
|
|
|
|
|
|
return 0
|
|
|
|
fi
|
|
|
|
|
|
|
|
return 1
|