1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2025-10-28 05:00:59 +01:00
zsh/Completion/Zsh/Command/_set
2001-04-02 11:30:19 +00:00

9 lines
131 B
Text

#compdef set
local prev="$words[CURRENT-1]"
if [[ "$prev" = [-+]o ]]; then
_options
elif [[ "$prev" = -A ]]; then
_arrays
fi