mirror of
git://git.code.sf.net/p/zsh/code
synced 2024-11-19 21:44:11 +01:00
79323d6d41
completion and add _pick_variant to resolve program variants in general
8 lines
99 B
Plaintext
8 lines
99 B
Plaintext
#compdef zcat
|
|
|
|
if _pick_variant gnu=GNU unix --license; then
|
|
_gzip "$@"
|
|
else
|
|
_compress "$@"
|
|
fi
|