summaryrefslogtreecommitdiff
path: root/completions/mypy
blob: 82da1f08392af1737247a572163024616fc6521e (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
56
57
# mypy completion                                          -*- shell-script -*-

_mypy()
{
    local cur prev words cword split
    _init_completion -s || return

    [[ $cword -gt 2 && ${words[cword-2]} == --shadow-file ]] && \
        prev=--shadow-file  # hack; takes two args

    case $prev in
        --help|--version|--python-version|--platform|--always-true|\
        --always-false|--find-occurrences|--package|--command|-!(-*)[hVpc])
            return
            ;;
        --config-file)
            _filedir
            return
            ;;
        --follow-imports)
            COMPREPLY=( $(compgen -W 'normal silent skip error' -- "$cur") )
            return
            ;;
        --python-executable)
            COMPREPLY=( $(compgen -c -- "${cur:-py}") )
            return
            ;;
        --*-dir|--*-report)
            _filedir -d
            return
            ;;
        --custom-typing|--module|-!(-*)m)
            _xfunc python _python_modules
            return
            ;;
        --shadow-file)
            _filedir '@(py|pyi)'
            return
            ;;
        --junit-xml)
            _filedir xml
            return
            ;;
    esac

    $split && return

    if [[ $cur == -* ]]; then
        COMPREPLY=( $(compgen -W '$(_parse_help "$1")' -- "$cur") )
        return
    fi

    _filedir '@(py|pyi)'
} &&
complete -F _mypy mypy

# ex: filetype=sh