22 lines
419 B
Plaintext
22 lines
419 B
Plaintext
|
# hid2hci completion
|
||
|
|
||
|
_hid2hci()
|
||
|
{
|
||
|
local cur prev words cword
|
||
|
_init_completion || return
|
||
|
|
||
|
if [[ "$cur" == -* ]]; then
|
||
|
COMPREPLY=( $( compgen -W '--help --quiet -0 --tohci -1 \
|
||
|
--tohid' -- "$cur" ) )
|
||
|
fi
|
||
|
} &&
|
||
|
complete -F _hid2hci hid2hci
|
||
|
|
||
|
# Local variables:
|
||
|
# mode: shell-script
|
||
|
# sh-basic-offset: 4
|
||
|
# sh-indent-comment: t
|
||
|
# indent-tabs-mode: nil
|
||
|
# End:
|
||
|
# ex: ts=4 sw=4 et filetype=sh
|