1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2025-09-06 23:31:28 +02:00
zsh/Completion/Core/_requested
1999-12-10 14:47:55 +00:00

15 lines
178 B
Text

#autoload
local tag
if [[ "$1" = -[VJ]* ]]; then
tag="$2"
else
tag="$1"
fi
comptags -R "$tag" &&
if [[ $# -gt 1 ]]; then
_description "$@"
return 0
fi