mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-09-19 15:41:32 +02:00
9 lines
141 B
Text
9 lines
141 B
Text
#autoload
|
|
|
|
local tag tname="$funcstack[2,-1]"
|
|
|
|
for tag; do
|
|
[[ "${_cur_tags[${tname}]}" = *:${tag}(:|\[*\]:)* ]] && return 0
|
|
done
|
|
|
|
return 1
|