about summary refs log tree commit diff
path: root/Completion/Base/Core/_requested
blob: 4ba52ce7feaf3254f0ffcf986c4acddf4beb95c7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#autoload

local __gopt

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

if comptags -R "$1"; then
  if [[ $# -gt 3 ]]; then
    _all_labels - "$__gopt[@]" "$@" || return 1
  elif [[ $# -gt 1 ]]; then
    _description "$__gopt[@]" "$@"
  fi
  return 0
else
  return 1
fi