about summary refs log tree commit diff
path: root/Completion/Pbmplus/_pgmtoppm
diff options
context:
space:
mode:
Diffstat (limited to 'Completion/Pbmplus/_pgmtoppm')
-rw-r--r--Completion/Pbmplus/_pgmtoppm21
1 files changed, 0 insertions, 21 deletions
diff --git a/Completion/Pbmplus/_pgmtoppm b/Completion/Pbmplus/_pgmtoppm
deleted file mode 100644
index c8b1abec6..000000000
--- a/Completion/Pbmplus/_pgmtoppm
+++ /dev/null
@@ -1,21 +0,0 @@
-#compdef pgmtoppm
-
-local ret=1 expl
-
-if [[ CURRENT -eq 2 ]]; then
-  if compset -P '?*-'; then
-    _colors
-    return
-  fi
-  _colors && ret=0
-
-  _description expl option
-  compadd "$expl[@]" - -map && ret=0
-
-  return ret
-elif [[ CURRENT -eq 3 && "$words[2]" = -map ]]; then
-  _description expl 'map file'
-  _files "$expl[@]" -g '*.(#i)ppm'
-else
-  _pbm_file
-fi