diff -r 1b17b8cdbfc3 -r 039b3f8a3442 bash-completion.sh --- 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