diff options
author | Jun-ichi Takimoto <takimoto-j@kba.biglobe.ne.jp> | 2018-04-05 20:27:39 +0900 |
---|---|---|
committer | Jun-ichi Takimoto <takimoto-j@kba.biglobe.ne.jp> | 2018-04-05 20:27:39 +0900 |
commit | 5dc36c40c322dcbdd9830e523810388c2ffea8a9 (patch) | |
tree | 727de41355eac2c2275217f1fac21fe154d69185 /Completion/Unix/Command/_tar | |
parent | bfff8debf78ccca79a6e362c1ee3eb6748578bec (diff) | |
download | zsh-5dc36c40c322dcbdd9830e523810388c2ffea8a9.tar.gz zsh-5dc36c40c322dcbdd9830e523810388c2ffea8a9.tar.xz zsh-5dc36c40c322dcbdd9830e523810388c2ffea8a9.zip |
42585: improve completion for libarchive-based tar
Offer all compressed archives if no compression flag is specified because libarchive can automaticaly recoginize them. cf. 42574 (Eitan Adler).
Diffstat (limited to 'Completion/Unix/Command/_tar')
-rw-r--r-- | Completion/Unix/Command/_tar | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Completion/Unix/Command/_tar b/Completion/Unix/Command/_tar index cff50562e..3e44b98f7 100644 --- a/Completion/Unix/Command/_tar +++ b/Completion/Unix/Command/_tar @@ -21,7 +21,7 @@ local _tar_cmd tf tmp tmpb del index # from some of the possible long options, and from the second word if # that does not start with a hyphen. -if _pick_variant gnu=GNU unix --version; then +if _pick_variant gnu=GNU libarchive=libarchive unix --version; then case "$($service --version)" in ("tar (GNU tar) "(#b)([0-9.-]##)*) autoload -z is-at-least |