~ubuntu-branches/ubuntu/vivid/bash-completion/vivid-proposed

« back to all changes in this revision

Viewing changes to completions/strace

  • Committer: Package Import Robot
  • Author(s): David Paleino
  • Date: 2013-11-04 18:08:07 UTC
  • mto: (5.1.13 sid)
  • mto: This revision was merged to the branch mainline in revision 43.
  • Revision ID: package-import@ubuntu.com-20131104180807-alm3km6rdyzn65qc
Tags: upstream-2.1
ImportĀ upstreamĀ versionĀ 2.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
58
58
 
59
59
                            COMPREPLY=( $( compgen -W '${!syscalls[@]} file
60
60
                                process network signal ipc desc all none' \
61
 
                                    -- "$cur") )
 
61
                                    -- "$cur" ) )
62
62
                            return 0
63
63
                            ;;
64
64
                    esac
89
89
        esac
90
90
 
91
91
        if [[ "$cur" == -* ]]; then
92
 
            COMPREPLY=( $( compgen -W '-c -d -f -ff -F --help -i -q \
93
 
                -r -t -tt -ttt -T -v -V -x -xx -a -e -o -O -p \
94
 
                -s -S -u -E' -- "$cur" ) )
 
92
            COMPREPLY=( $( compgen -W '-c -d -f -ff -F --help -i -q -r -t -tt
 
93
                -ttt -T -v -V -x -xx -a -e -o -O -p -s -S -u -E' -- "$cur" ) )
95
94
        else
96
95
            COMPREPLY=( $( compgen -c -- "$cur" ) )
97
96
        fi