diff options
author | Jun-ichi Takimoto <takimoto-j@kba.biglobe.ne.jp> | 2018-11-15 21:02:22 +0900 |
---|---|---|
committer | Jun-ichi Takimoto <takimoto-j@kba.biglobe.ne.jp> | 2018-11-15 21:02:22 +0900 |
commit | 35afea07724dce143a3b6113002727cbc034b5ef (patch) | |
tree | 5a8164dc61e718d7882569add61fa2fbbecb8fcf /Completion/Unix/Command/_zcat | |
parent | e258e7d251b7403a6d77b23e6927b659bf9c2c37 (diff) | |
download | zsh-35afea07724dce143a3b6113002727cbc034b5ef.tar.gz zsh-35afea07724dce143a3b6113002727cbc034b5ef.tar.xz zsh-35afea07724dce143a3b6113002727cbc034b5ef.zip |
unposted: _zcat: support macOS
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 cf927507b..baa7bd791 100644 --- a/Completion/Unix/Command/_zcat +++ b/Completion/Unix/Command/_zcat @@ -1,6 +1,6 @@ #compdef zcat -if _pick_variant gz='(GNU|NetBSD)' unix --license; then +if _pick_variant gz='(GNU|NetBSD|Apple)' unix --license; then _gzip "$@" else _compress "$@" |