diff options
author | Sven Wischnowsky <wischnow@users.sourceforge.net> | 2001-04-02 11:58:58 +0000 |
---|---|---|
committer | Sven Wischnowsky <wischnow@users.sourceforge.net> | 2001-04-02 11:58:58 +0000 |
commit | 1549d555a51b8aa5cd5d2b9d455034e8e9d05fc1 (patch) | |
tree | a14b49804c6ecf578d5f89d64d4e27314a6c4e75 /Completion | |
parent | c5a916dff57aa29fcd486c20a29e7bdd755270c3 (diff) | |
download | zsh-1549d555a51b8aa5cd5d2b9d455034e8e9d05fc1.tar.gz zsh-1549d555a51b8aa5cd5d2b9d455034e8e9d05fc1.tar.xz zsh-1549d555a51b8aa5cd5d2b9d455034e8e9d05fc1.zip |
moved to Completion/Unix/Command/_pack
Diffstat (limited to 'Completion')
-rw-r--r-- | Completion/User/_pack | 16 |
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 |