diff options
author | Peter Stephenson <pws@users.sourceforge.net> | 2006-08-04 11:41:06 +0000 |
---|---|---|
committer | Peter Stephenson <pws@users.sourceforge.net> | 2006-08-04 11:41:06 +0000 |
commit | 1f03591f216652824818d13730588d78226d569a (patch) | |
tree | 45c2a1227981589470ab2ac1f651b3cff0098c2b /Completion | |
parent | 7a9958e78eab56b576c97942ad21ac27833921b7 (diff) | |
download | zsh-1f03591f216652824818d13730588d78226d569a.tar.gz zsh-1f03591f216652824818d13730588d78226d569a.tar.xz zsh-1f03591f216652824818d13730588d78226d569a.zip |
22584: GNU tar should complete uncompressed archives
Diffstat (limited to 'Completion')
-rw-r--r-- | Completion/Unix/Type/_tar_archive | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Completion/Unix/Type/_tar_archive b/Completion/Unix/Type/_tar_archive index eceaea875..1ac7cd0bf 100644 --- a/Completion/Unix/Type/_tar_archive +++ b/Completion/Unix/Type/_tar_archive @@ -19,7 +19,7 @@ if [[ "$1" = *[urtx]* ]]; then elif [[ "$1" = *[Ijy]* ]]; then _files "$expl[@]" -g '*.(tar|TAR).bz2(-.)' elif [[ "$_cmd_variant[$service]" == gnu ]]; then - _files "$expl[@]" -g '*.((tar|TAR).(gz|GZ|Z|bz2)|tgz)(-.)' + _files "$expl[@]" -g '*.((tar|TAR)(.gz|.GZ|.Z|.bz2|)|tgz)(-.)' else _files "$expl[@]" -g '*.(tar|TAR)(-.)' fi |