summaryrefslogtreecommitdiff
path: root/completions/perltidy
blob: 4404cf80eb172ef4e88233dc4fe58ca462d403f4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
# perltidy(1) completion                                   -*- shell-script -*-

_perltidy()
{
    local cur prev words cword
    _init_completion -n = || return

    case $prev in
        -h | --help)
            return
            ;;
        -o)
            _filedir
            return
            ;;
    esac

    case $cur in
        -pro=*)
            cur="${cur#*=}"
            _filedir
            return
            ;;
        -ole=*)
            COMPREPLY=($(compgen -W 'dos win mac unix' -- "${cur#*=}"))
            return
            ;;
        -bt=* | -pt=* | -sbt=* | -bvt=* | -pvt=* | -sbvt=* | -bvtc=* | -pvtc=* | -sbvtc=* | \
            -cti=* | -kbl=* | -vt=*)
            COMPREPLY=($(compgen -W '0 1 2' -- "${cur#*=}"))
            return
            ;;
        -vtc=*)
            COMPREPLY=($(compgen -W '0 1' -- "${cur#*=}"))
            return
            ;;
        -cab=*)
            COMPREPLY=($(compgen -W '0 1 2 3' -- "${cur#*=}"))
            return
            ;;
        -*=)
            return
            ;;
    esac

    if [[ $cur == -* ]]; then
        COMPREPLY=($(compgen -W '$(_parse_help "$1")' -- "$cur"))
        [[ ${COMPREPLY-} == *= ]] && compopt -o nospace
    else
        _filedir 'p[lm]|t'
    fi
} &&
    complete -F _perltidy perltidy

# ex: filetype=sh