mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-09-01 09:41:44 +02:00
15 lines
199 B
Text
15 lines
199 B
Text
#compdef ppmchange
|
|
|
|
local ret=1 expl
|
|
|
|
_pbm_file && ret=0
|
|
|
|
if (( CURRENT & 1 )); then
|
|
_description expl 'new color'
|
|
else
|
|
_description expl 'old color'
|
|
fi
|
|
|
|
_x_color "$expl[@]" && ret=0
|
|
|
|
return ret
|