diff options
Diffstat (limited to 'Completion/User/_bzip2')
-rw-r--r-- | Completion/User/_bzip2 | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Completion/User/_bzip2 b/Completion/User/_bzip2 index 545aa5fcc..f0fd23f90 100644 --- a/Completion/User/_bzip2 +++ b/Completion/User/_bzip2 @@ -23,8 +23,8 @@ case "${words[1]:t}" in '(-c)--stdout[write on standard output]' \ '(--quiet)-q[suppress all warnings]' \ '(-q)--quiet[suppress all warnings]' \ - '(--verbose)*-v[verbose mode]' \ - '(-v)*--verbose[verbose mode]' \ + '*-v[verbose mode]' \ + '*--verbose[verbose mode]' \ '(--license)-L[display software license]' \ '(-L)--license[display software license]' \ '(--version)-V[display version number]' \ @@ -45,7 +45,7 @@ esac if [[ "$state" = files ]]; then (( $+opt_args[-z] || $+opt_args[--compress] )) && decompress=no - (( $+opt_args[-d] || $+opt_args[--decompress] || $+opt_args[-t] || \ + (( $+opt_args[-d] || $+opt_args[--decompress] || $+opt_args[-t] || $+opt_args[--test] )) && unset decompress if [[ -z "$decompress" ]] ; then _description files expl 'compressed file' |