blob: c9d14153562c7f563a1a6a8a8259ec34cce88bd1 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#compdef pnmgamma
local ret=1
if [[ CURRENT -eq 2 ]]; then
_message 'gamma value or red gamma value'
elif [[ CURRENT -eq 3 ]]; then
_pbm_file && ret=0
_message 'green gamma value'
elif [[ CURRENT -eq 4 ]]; then
_message 'blue gamma value'
elif [[ CURRENT -eq 5 ]]; then
_pbm_file && ret=0
fi
return ret
|