1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2025-09-01 09:41:44 +02:00
zsh/Completion/Pbmplus/_ppmchange
1999-08-31 10:16:50 +00:00

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