mirror of
git://git.code.sf.net/p/zsh/code
synced 2024-11-19 21:44:11 +01:00
10 lines
131 B
Plaintext
10 lines
131 B
Plaintext
#compdef set
|
|
|
|
local prev="$words[CURRENT-1]"
|
|
|
|
if [[ "$prev" = [-+]o ]]; then
|
|
_options
|
|
elif [[ "$prev" = -A ]]; then
|
|
_arrays
|
|
fi
|