about summary refs log tree commit diff
path: root/Completion
diff options
context:
space:
mode:
Diffstat (limited to 'Completion')
-rw-r--r--Completion/User/_pack16
1 files changed, 0 insertions, 16 deletions
diff --git a/Completion/User/_pack b/Completion/User/_pack
deleted file mode 100644
index b0172dca8..000000000
--- a/Completion/User/_pack
+++ /dev/null
@@ -1,16 +0,0 @@
-#compdef pack unpack pcat=unpack
-
-local expl state line
-
-case $service in
-  pack)
-    _arguments -C \
-      '-f[force packing even for files which will not benefit]' \
-      '-[show statistics for files]' \
-      '*:file to compress:_files -g \*\~\*.z'
-  ;;
-  unpack)
-    _description files expl 'compressed file'
-    _files "$expl[@]" -g '*.z'
-  ;;
-esac