1
0
mirror of git://git.code.sf.net/p/zsh/code synced 2024-10-03 17:31:33 +02:00
zsh/Completion/Zsh/Command/_set
2001-04-02 11:30:19 +00:00

10 lines
131 B
Plaintext

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