diff -r cde9bb07ea0a -r 463ce61415f1 bash-completion.sh --- a/bash-completion.sh Thu Oct 08 17:23:07 2020 +0200 +++ b/bash-completion.sh Sun Oct 11 17:13:02 2020 +0200 @@ -48,6 +48,7 @@ elif [[ "$w1" == "--required-connections" && "x$w0" == "x" ]]; then COMPREPLY=("0") elif [[ "$w1" == "--list-ports" ]]; then COMPREPLY=($(compgen -W "${BOOLEAN_VALUES[*]}" -- "$w0")) elif [[ "$w1" == "--list-connections" ]]; then COMPREPLY=($(compgen -W "${BOOLEAN_VALUES[*]}" -- "$w0")) + elif [[ "$w1" == "--list-properties" ]]; then COMPREPLY=($(compgen -W "${BOOLEAN_VALUES[*]}" -- "$w0")) elif [[ "$w1" == "--list-midi-messages" ]]; then COMPREPLY=($(compgen -W "${BOOLEAN_VALUES[*]}" -- "$w0")) else OPTIONS=( @@ -59,6 +60,7 @@ "--required-connections" "--list-ports" "--list-connections" + "--list-properties" "--list-midi-messages" ) COMPREPLY=($(compgen -W "${OPTIONS[*]}" -- "$w0"))