1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2025-01-30 15:02:18 +01:00
zsh/Completion/Builtins/_vars
1999-11-22 01:05:46 +00:00

26 lines
604 B
Text

#compdef getopts read unset vared
# This will handle completion of keys of associative arrays, e.g. at
# `vared foo[<TAB>'. However, in this version the [ must be added
# by hand.
if [[ $PREFIX = *\[* ]]; then
local var=${PREFIX%%\[*}
local elt="${PREFIX#*\]}${SUFFIX%\]}"
local addclose
compset -p $(( ${#var} + 1 ))
if ! compset -S \]; then
addclose=(-S ']')
fi
if [[ ${(tP)var} = assoc* ]]; then
local expl
_wanted -C subscript association-keys expl 'association key' &&
compadd "$expl[@]" $addclose - ${(kP)var}
fi
else
_tags parameters && _parameters
fi