From f513f4e53a57b7e6e3cb3fe9f5512b8dfeac25ad Mon Sep 17 00:00:00 2001 From: Fabian Homborg Date: Thu, 26 Jan 2017 21:52:26 +0100 Subject: [PATCH] Add completions for xinput --- share/completions/xinput.fish | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 share/completions/xinput.fish diff --git a/share/completions/xinput.fish b/share/completions/xinput.fish new file mode 100644 index 000000000..eadf40ae2 --- /dev/null +++ b/share/completions/xinput.fish @@ -0,0 +1,11 @@ +# xinput, a tool for managing X11 input devices +set -l cmds version list get-feedbacks set-pointer set-mode set-ptr-feedback set-integer-feedback set-button-map query-state list-props set-int-prop set-float-prop set-prop watch-props delete-prop test test-xi2 create-master remove-master reattach float set-cp map-to-output enable disable + +function __fish_xinput_devices + # Yeah, this includes a "↳" char + # There's either this or printing only name or id, not both + xinput list --short | string replace -r '^[\W↳]*([\w/ ]+)\s+id=([0-9]+).*$' '$2\t$1' +end + +complete -c xinput -f -n "not __fish_seen_subcommand_from $cmds" -a "$cmds" +complete -c xinput -f -n "__fish_seen_subcommand_from list get-feedbacks set-pointer set-mode set-ptr-feedback set-integer-feedback set-button-map query-state list-props set-int-prop set-float-prop set-prop watch-props" -a "(__fish_xinput_devices)"