diff options
author | Oliver Kiddle <opk@users.sourceforge.net> | 2001-02-08 15:33:26 +0000 |
---|---|---|
committer | Oliver Kiddle <opk@users.sourceforge.net> | 2001-02-08 15:33:26 +0000 |
commit | 14d2dae44c6ccc408ee2f7b558ea31f28b2b5936 (patch) | |
tree | be5a58aa3a794a5c809b107945f2af5a8d821d9f /Completion/User | |
parent | dcb2530bd39078acc7dd92ba2657053921ca586c (diff) | |
download | zsh-14d2dae44c6ccc408ee2f7b558ea31f28b2b5936.tar.gz zsh-14d2dae44c6ccc408ee2f7b558ea31f28b2b5936.tar.xz zsh-14d2dae44c6ccc408ee2f7b558ea31f28b2b5936.zip |
fix _gzip to work for zcat again (13445)
Diffstat (limited to 'Completion/User')
-rw-r--r-- | Completion/User/_gzip | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Completion/User/_gzip b/Completion/User/_gzip index a915715a4..f5fad3c06 100644 --- a/Completion/User/_gzip +++ b/Completion/User/_gzip @@ -4,7 +4,7 @@ local decompress expl curcontext="$curcontext" state line typeset -A opt_args case "$service" in -gunzip) +gunzip|zcat) decompress=yes ;& gzip) |