about summary refs log tree commit diff
diff options
context:
space:
mode:
authorTanaka Akira <akr@users.sourceforge.net>1999-12-16 23:06:08 +0000
committerTanaka Akira <akr@users.sourceforge.net>1999-12-16 23:06:08 +0000
commit8ee1d64814e1f63b82691249b402a0479f964acd (patch)
tree7ee63a3e34976363d75b2665f51a13e8b83a44fc
parent11dd7ea2a7a346887a62939069c823ff700e05ac (diff)
downloadzsh-8ee1d64814e1f63b82691249b402a0479f964acd.tar.gz
zsh-8ee1d64814e1f63b82691249b402a0479f964acd.tar.xz
zsh-8ee1d64814e1f63b82691249b402a0479f964acd.zip
zsh-workers/9093
-rw-r--r--Completion/User/_tar_archive2
1 files changed, 2 insertions, 0 deletions
diff --git a/Completion/User/_tar_archive b/Completion/User/_tar_archive
index 2c2696481..7d9fb54ac 100644
--- a/Completion/User/_tar_archive
+++ b/Completion/User/_tar_archive
@@ -16,6 +16,8 @@ _description files expl 'archive file'
 if [[ "$1" = *[tx]* ]]; then
   if [[ "$1" = *[zZ]* ]]; then
     _files "$expl[@]" -g '*.((tar|TAR).(gz|GZ|Z)|.tgz)'
+  elif [[ "$1" = *I* ]]; then
+    _files "$expl[@]" -g '*.(tar|TAR).bz2'
   else
     _files "$expl[@]" -g '*.(tar|TAR)'
   fi