From 9867c4091e71e6ed69889a9bfaee07275d2fa04e Mon Sep 17 00:00:00 2001 From: Tanaka Akira Date: Thu, 19 Aug 1999 11:18:05 +0000 Subject: manual/7448 --- Completion/Pbmplus/_pnmgamma | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 Completion/Pbmplus/_pnmgamma (limited to 'Completion/Pbmplus/_pnmgamma') diff --git a/Completion/Pbmplus/_pnmgamma b/Completion/Pbmplus/_pnmgamma new file mode 100644 index 000000000..c9d141535 --- /dev/null +++ b/Completion/Pbmplus/_pnmgamma @@ -0,0 +1,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 -- cgit 1.4.1