~jjo/bash-completion/quote_readline_by_ref_fixes

« back to all changes in this revision

Viewing changes to completions/ipv6calc

  • Committer: Package Import Robot
  • Author(s): Dimitri John Ledkov
  • Date: 2013-12-27 01:28:28 UTC
  • mfrom: (5.1.14 sid)
  • Revision ID: package-import@ubuntu.com-20131227012828-svk9wdy2ghic0cfh
Tags: 1:2.1-2ubuntu1
* Resync with Debian, remaining diff
  * debian/patches/disable-avahi-browse.diff: Disable avahi-browse since
    it scales poorly in the current form: refresh patch
  * mark Multi-Arch:foreign
  * debian/maintscript, debian/postinst:
    - clean etc conffiles on upgrade since completion files are in /usr
      with the new version
  * patches/101_bash_completion.oga_ogv.patch: Increase support for other
    OGG formats including .oga, .ogx, etc. (LP: #311525)

* Dropped changes:
  - patches/103_colormake.patch: Add support for colormake to the make
    completion rules. (LP: #743208)

Show diffs side-by-side

added added

removed removed

Lines of Context:
28
28
    $split && return 0
29
29
 
30
30
    if [[ "$cur" == -* ]]; then
31
 
        COMPREPLY=( $( compgen -W '--help --debug --quiet --in \
32
 
            --out --action --examples --showinfo --show_types \
33
 
            --machine_readable --db-geoip --db-geoip-default \
34
 
            --db-ip2location-ipv4 --db-ip2location-ipv6 \
35
 
            --lowercase --uppercase --printprefix --printsuffix \
36
 
            --maskprefix --masksuffix --printstart --printend \
37
 
            --printcompressed --printuncompressed \
38
 
            --printfulluncompressed --printmirrored' -- "$cur" ) )
 
31
        COMPREPLY=( $( compgen -W '--help --debug --quiet --in --out --action
 
32
            --examples --showinfo --show_types --machine_readable --db-geoip
 
33
            --db-geoip-default --db-ip2location-ipv4 --db-ip2location-ipv6
 
34
            --lowercase --uppercase --printprefix --printsuffix --maskprefix
 
35
            --masksuffix --printstart --printend --printcompressed
 
36
            --printuncompressed --printfulluncompressed --printmirrored' \
 
37
                -- "$cur" ) )
39
38
        return 0
40
39
    fi
41
40