about summary refs log tree commit diff
path: root/Completion/User/_gs_name
diff options
context:
space:
mode:
Diffstat (limited to 'Completion/User/_gs_name')
-rw-r--r--Completion/User/_gs_name31
1 files changed, 0 insertions, 31 deletions
diff --git a/Completion/User/_gs_name b/Completion/User/_gs_name
deleted file mode 100644
index 3aef646eb..000000000
--- a/Completion/User/_gs_name
+++ /dev/null
@@ -1,31 +0,0 @@
-#autoload
-
-local expl
-
-if [[ "$1" = -d ]]; then
-  if [[ "$PREFIX" = *\=* ]]; then
-    _message 'systemdict definition value'
-  else
-    _description expl 'systemdict definition name'
-    compadd "$expl[@]" -M 'm:{a-z}={A-Z}' - \
-            DISKFONTS NOCACHE NOBIND NODISPLAY NOPAUSE PLATFONTS SAFER \
-            WRITESYSTEMDICT
-  fi
-elif compset -P '*\='; then
-  case "$IPREFIX" in
-  *DEVICE\=)
-    _description expl 'ghostscript device'
-    compadd "$expl[@]" - "${(@)${=${$(gs -h)##* devices:}%%Search path:*}:#}"
-    ;;
-  *OutputFile\=)
-    _description expl 'output file'
-    _files
-    ;;
-  *)
-    _message 'systemdict value'
-    return 1
-  esac
-else
-  _description expl 'systemdict name'
-  compadd "$expl[@]" -S\= -M 'm:{a-z}={A-Z}' - DEVICE OutputFile
-fi