mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-09-06 23:31:28 +02:00
15 lines
178 B
Text
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
|