summaryrefslogtreecommitdiffstats
path: root/completions/hid2hci
blob: 161f56027d94f962793bd4f2667edfd37b206c26 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# hid2hci completion                                       -*- shell-script -*-

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

    if [[ $cur == -* ]]; then
        _comp_compgen -- -W '--help --quiet -0 --tohci -1 --tohid'
    fi
} &&
    complete -F _comp_cmd_hid2hci hid2hci

# ex: filetype=sh