diff options
Diffstat (limited to 'completions/pack200')
-rw-r--r-- | completions/pack200 | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/completions/pack200 b/completions/pack200 index 6be2dc88..fa6b1c78 100644 --- a/completions/pack200 +++ b/completions/pack200 @@ -55,13 +55,12 @@ _pack200() if ! $pack ; then if [[ "$cur" == -* ]] ; then - COMPREPLY=( $( compgen -W '--no-gzip --gzip --strip-debug \ - --no-keep-file-order --segment-limit= --effort= \ - --deflate-hint= --modification-time= --pass-file= \ - --unknown-attribute= --class-attribute= --field-attribute= \ - --method-attribute= --code-attribute= --config-file= \ - --verbose --quiet --log-file= --help --version -J \ - --repack' -- "$cur" ) ) + COMPREPLY=( $( compgen -W '--no-gzip --gzip --strip-debug + --no-keep-file-order --segment-limit= --effort= --deflate-hint= + --modification-time= --pass-file= --unknown-attribute= + --class-attribute= --field-attribute= --method-attribute= + --code-attribute= --config-file= --verbose --quiet --log-file= + --help --version -J --repack' -- "$cur" ) ) [[ $COMPREPLY == *= ]] && compopt -o nospace else _filedir 'pack?(.gz)' |