summaryrefslogtreecommitdiffstats
path: root/completions/hash
blob: 4ea517b2a891f4ad5e4517c1c3bf1d3c89f0dd09 (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
# hash completion                                           -*- shell-script -*-

_comp_cmd_hash()
{
    local cur prev words cword comp_args
    _comp_initialize -- "$@" || return

    local noargopts='!(*[p]*)'
    # shellcheck disable=SC2254
    case $prev in
        -${noargopts}p)
            _comp_compgen_filedir
            return
            ;;
    esac

    if [[ $cur == -* ]]; then
        _comp_compgen_help -c help "$1"
        return
    fi

    _comp_compgen_commands
} &&
    complete -F _comp_cmd_hash hash

# ex: filetype=sh