bash-completion.sh
branchv_0
changeset 7 039b3f8a3442
parent 0 3493d6e7016e
child 8 b498160cc2ab
--- a/bash-completion.sh	Wed Apr 07 22:55:00 2021 +0200
+++ b/bash-completion.sh	Mon Apr 05 15:37:28 2021 +0200
@@ -29,10 +29,12 @@
 
 	  if [[ "$w1" == "--list-input-devices"                             ]];    then COMPREPLY=($(compgen -W "${BOOLEAN_VALUES[*]}" -- "$w0"))
 	elif [[ "$w1" == "--list-input-events"                              ]];    then COMPREPLY=($(compgen -W "${BOOLEAN_VALUES[*]}" -- "$w0"))
+	elif [[ "$w1" == "--list-windows"                                   ]];    then COMPREPLY=($(compgen -W "${BOOLEAN_VALUES[*]}" -- "$w0"))
 	else
 		OPTIONS=(
 			"--list-input-devices"
 			"--list-input-events"
+			"--list-windows"
 		)
 		COMPREPLY=($(compgen -W "${OPTIONS[*]}" -- "$w0"))
 	fi