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

local __gopt=-J

if [[ "$1" = -([12]|)[VJ] ]]; then
  __gopt="$1"
  shift
fi

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