1
0
mirror of git://git.code.sf.net/p/zsh/code synced 2024-10-03 17:31:33 +02:00
zsh/Completion/Core/_requested

20 lines
281 B
Plaintext
Raw Normal View History

1999-11-09 14:15:00 +01:00
#autoload
2000-05-31 11:38:25 +02:00
local __gopt=-J
1999-11-09 14:15:00 +01:00
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
1999-11-09 14:15:00 +01:00
2000-04-01 22:43:43 +02:00
if comptags -R "$1"; then
if [[ $# -gt 3 ]]; then
2000-05-31 11:38:25 +02:00
_all_labels - "$__gopt" "$@" || return 1
2000-04-01 22:43:43 +02:00
elif [[ $# -gt 1 ]]; then
2000-05-31 11:38:25 +02:00
_description "$__gopt" "$@"
2000-04-01 22:43:43 +02:00
fi
return 0
else
return 1
fi