diff options
Diffstat (limited to 'Completion')
-rw-r--r-- | Completion/User/_tar | 2 | ||||
-rw-r--r-- | Completion/User/_tar_archive | 12 |
2 files changed, 11 insertions, 3 deletions
diff --git a/Completion/User/_tar b/Completion/User/_tar index 9a71d8cef..634917233 100644 --- a/Completion/User/_tar +++ b/Completion/User/_tar @@ -125,6 +125,8 @@ elif [[ ( "$_tar_cmd" = *[xt]* || -n $del ) && -n "$tf" ]]; then if [[ $_tar_cmd = *z* ]]; then largs=-tzf + elif [[ $_tar_cmd = *j* ]]; then + largs=-tjf elif [[ $_tar_cmd = *y* ]]; then largs=-tyf elif [[ $_tar_cmd = *Z* ]]; then diff --git a/Completion/User/_tar_archive b/Completion/User/_tar_archive index 58e436c4d..e5a754e93 100644 --- a/Completion/User/_tar_archive +++ b/Completion/User/_tar_archive @@ -7,14 +7,20 @@ # If your version of `tar' supports this you may want to complete # things like `host:file' or `user@host:file' here. +local expl + [[ $# -eq 0 && $+_tar_cmd -ne 0 ]] && set "$_tar_cmd" +_description files expl 'archive file' + if [[ "$1" = *[tx]* ]]; then if [[ "$1" = *[zZ]* ]]; then - _files -g '*.((tar|TAR).(gz|GZ|Z)|.tgz)' + _files "$expl[@]" -g '*.((tar|TAR).(gz|GZ|Z)|tgz)' + elif [[ "$1" = *[Ijy]* ]]; then + _files "$expl[@]" -g '*.(tar|TAR).bz2' else - _files -g '*.(tar|TAR)' + _files "$expl[@]" -g '*.(tar|TAR)' fi else - _files + _files "$expl[@]" fi |