about summary refs log tree commit diff
path: root/Completion/User
diff options
context:
space:
mode:
authorSven Wischnowsky <wischnow@users.sourceforge.net>2001-04-02 11:58:58 +0000
committerSven Wischnowsky <wischnow@users.sourceforge.net>2001-04-02 11:58:58 +0000
commit1549d555a51b8aa5cd5d2b9d455034e8e9d05fc1 (patch)
treea14b49804c6ecf578d5f89d64d4e27314a6c4e75 /Completion/User
parentc5a916dff57aa29fcd486c20a29e7bdd755270c3 (diff)
downloadzsh-1549d555a51b8aa5cd5d2b9d455034e8e9d05fc1.tar.gz
zsh-1549d555a51b8aa5cd5d2b9d455034e8e9d05fc1.tar.xz
zsh-1549d555a51b8aa5cd5d2b9d455034e8e9d05fc1.zip
moved to Completion/Unix/Command/_pack
Diffstat (limited to 'Completion/User')
-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