summaryrefslogtreecommitdiff
path: root/completions/hid2hci
diff options
context:
space:
mode:
Diffstat (limited to 'completions/hid2hci')
-rw-r--r--completions/hid2hci21
1 files changed, 21 insertions, 0 deletions
diff --git a/completions/hid2hci b/completions/hid2hci
new file mode 100644
index 00000000..2c49cf7f
--- /dev/null
+++ b/completions/hid2hci
@@ -0,0 +1,21 @@
+# 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