summaryrefslogtreecommitdiff
path: root/completions/pwdx
blob: ed8d3ec276d6a9ab8cacdafa232cf34f393947d7 (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
# pwdx(1) completion                                       -*- shell-script -*-

_pwdx()
{
    local cur prev words cword
    _init_completion || return

    case $prev in
        -h|--help|-V|--version)
            return
            ;;
    esac

    if [[ $cur == -* ]]; then
        local help='$( _parse_help "$1" )'
        [[ $help ]] || help=-V
        COMPREPLY=( $( compgen -W "$help" -- "$cur" ) )
    else
        _pids
    fi
} &&
complete -F _pwdx pwdx

# ex: filetype=sh