mirror of
git://git.code.sf.net/p/zsh/code
synced 2024-11-20 14:04:03 +01:00
10 lines
141 B
Plaintext
10 lines
141 B
Plaintext
|
#autoload
|
||
|
|
||
|
local tag tname="$funcstack[2,-1]"
|
||
|
|
||
|
for tag; do
|
||
|
[[ "${_cur_tags[${tname}]}" = *:${tag}(:|\[*\]:)* ]] && return 0
|
||
|
done
|
||
|
|
||
|
return 1
|