diff options
author | Clint Adams <clint@users.sourceforge.net> | 2009-12-05 17:29:11 +0000 |
---|---|---|
committer | Clint Adams <clint@users.sourceforge.net> | 2009-12-05 17:29:11 +0000 |
commit | 6576451be197b04713deee63de64e3784cda744d (patch) | |
tree | 7e425826a1b6b1433b5d6b3390ef512af466ce48 /Completion | |
parent | f35932958fccbd464d8e8514a106fef6d9c86ff3 (diff) | |
download | zsh-6576451be197b04713deee63de64e3784cda744d.tar.gz zsh-6576451be197b04713deee63de64e3784cda744d.tar.xz zsh-6576451be197b04713deee63de64e3784cda744d.zip |
Ingmar Vanhassel: 27456: complete .tar.lzma, .tbz, .txz.
Diffstat (limited to 'Completion')
-rw-r--r-- | Completion/Unix/Type/_tar_archive | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Completion/Unix/Type/_tar_archive b/Completion/Unix/Type/_tar_archive index a39e841f8..28df77638 100644 --- a/Completion/Unix/Type/_tar_archive +++ b/Completion/Unix/Type/_tar_archive @@ -19,9 +19,9 @@ if [[ "$1" = *[urtx]* ]]; then elif [[ "$1" = *[Ijy]* ]]; then _files "$expl[@]" -g '*.(tar|TAR).bz2(-.)' elif [[ "$1" = *J* ]]; then - _files "$expl[@]" -g '*.(tar|TAR).xz(-.)' + _files "$expl[@]" -g '*.(tar|TAR).(lzma|xz)(-.)' elif [[ "$_cmd_variant[$service]" == gnu ]]; then - _files "$expl[@]" -g '*.((tar|TAR)(.gz|.GZ|.Z|.bz2|xz|)|tgz)(-.)' + _files "$expl[@]" -g '*.((tar|TAR)(.gz|.GZ|.Z|.bz2|.lzma|.xz|)|(tbz|tgz|txz))(-.)' else _files "$expl[@]" -g '*.(tar|TAR)(-.)' fi |