summaryrefslogtreecommitdiffstats
path: root/completions/hid2hci
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--completions/hid2hci15
1 files changed, 15 insertions, 0 deletions
diff --git a/completions/hid2hci b/completions/hid2hci
new file mode 100644
index 0000000..f33a495
--- /dev/null
+++ b/completions/hid2hci
@@ -0,0 +1,15 @@
+# hid2hci completion -*- shell-script -*-
+
+_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
+
+# ex: filetype=sh