diff options
author | Ville Skyttä <ville.skytta@iki.fi> | 2013-02-17 23:49:30 +0200 |
---|---|---|
committer | Ville Skyttä <ville.skytta@iki.fi> | 2013-02-17 23:49:30 +0200 |
commit | 6185297fc90e82c2788a8f3ea0fd42d54267c499 (patch) | |
tree | 553c05fe6efcfaa351dd610213b71e7ca297e317 /completions/ipv6calc | |
parent | e424ed3e52f90884377cb2384498b2f907aff1e9 (diff) | |
download | bash-completion-6185297fc90e82c2788a8f3ea0fd42d54267c499.tar.gz |
*: Line continuation, whitespace, and compgen -W ... -- "$cur" quoting cleanups.
Diffstat (limited to 'completions/ipv6calc')
-rw-r--r-- | completions/ipv6calc | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/completions/ipv6calc b/completions/ipv6calc index 102f8327..5db7271f 100644 --- a/completions/ipv6calc +++ b/completions/ipv6calc @@ -28,14 +28,13 @@ _ipv6calc() $split && return 0 if [[ "$cur" == -* ]]; then - COMPREPLY=( $( compgen -W '--help --debug --quiet --in \ - --out --action --examples --showinfo --show_types \ - --machine_readable --db-geoip --db-geoip-default \ - --db-ip2location-ipv4 --db-ip2location-ipv6 \ - --lowercase --uppercase --printprefix --printsuffix \ - --maskprefix --masksuffix --printstart --printend \ - --printcompressed --printuncompressed \ - --printfulluncompressed --printmirrored' -- "$cur" ) ) + COMPREPLY=( $( compgen -W '--help --debug --quiet --in --out --action + --examples --showinfo --show_types --machine_readable --db-geoip + --db-geoip-default --db-ip2location-ipv4 --db-ip2location-ipv6 + --lowercase --uppercase --printprefix --printsuffix --maskprefix + --masksuffix --printstart --printend --printcompressed + --printuncompressed --printfulluncompressed --printmirrored' \ + -- "$cur" ) ) return 0 fi |