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

10 lines
189 B
Plaintext
Raw Normal View History

#compdef declare export integer local readonly typeset
1999-04-15 20:05:38 +02:00
if [[ "$PREFIX" = *\=* ]]; then
compstate[parameter]="${PREFIX%%\=*}"
compset -P 1 '*='
_value
else
_parameters -q -S '='
fi