diff options
author | Oliver Kiddle <opk@zsh.org> | 2015-07-23 07:02:40 +0200 |
---|---|---|
committer | Oliver Kiddle <opk@zsh.org> | 2015-07-23 07:02:40 +0200 |
commit | 7351fea0f914198e39cbf0f7fc98a4823a77b9fc (patch) | |
tree | 8d977dee9401fe5c01d9a4d64951bb44aa3cefb4 /Completion/Unix/Command/_zcat | |
parent | b4aff3bc52e15be87304183b3ae959668192b48c (diff) | |
download | zsh-7351fea0f914198e39cbf0f7fc98a4823a77b9fc.tar.gz zsh-7351fea0f914198e39cbf0f7fc98a4823a77b9fc.tar.xz zsh-7351fea0f914198e39cbf0f7fc98a4823a77b9fc.zip |
35866: complete also for pigz and allow for NetBSD gzip
Diffstat (limited to 'Completion/Unix/Command/_zcat')
-rw-r--r-- | Completion/Unix/Command/_zcat | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Completion/Unix/Command/_zcat b/Completion/Unix/Command/_zcat index 6dd4ecd7b..cf927507b 100644 --- a/Completion/Unix/Command/_zcat +++ b/Completion/Unix/Command/_zcat @@ -1,6 +1,6 @@ #compdef zcat -if _pick_variant gnu=GNU unix --license; then +if _pick_variant gz='(GNU|NetBSD)' unix --license; then _gzip "$@" else _compress "$@" |