summaryrefslogtreecommitdiffstats
path: root/completions/acpi
diff options
context:
space:
mode:
Diffstat (limited to 'completions/acpi')
-rw-r--r--completions/acpi22
1 files changed, 22 insertions, 0 deletions
diff --git a/completions/acpi b/completions/acpi
new file mode 100644
index 0000000..f2c38b2
--- /dev/null
+++ b/completions/acpi
@@ -0,0 +1,22 @@
+# acpi(1) completion -*- shell-script -*-
+
+_acpi()
+{
+ local cur prev words cword
+ _init_completion || return
+
+ case $prev in
+ --help | --version | -!(-*)[hv])
+ return
+ ;;
+ --directory | -!(-*)d)
+ _filedir -d
+ return
+ ;;
+ esac
+
+ COMPREPLY=($(compgen -W '$(_parse_help "$1")' -- "$cur"))
+} &&
+ complete -F _acpi acpi
+
+# ex: filetype=sh