about summary refs log tree commit diff
path: root/Completion/Base/Core/_next_label
blob: ff9b658a1afaaa70bf90ed359ef9a5d995125af8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#autoload

local __gopt __descr __spec

__gopt=()
zparseopts -D -a __gopt 1 2 V J x

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