diff -r e8aae4d42c01 -r 326935d1bfab bash-completion.sh --- a/bash-completion.sh Wed Oct 07 22:29:38 2020 +0200 +++ b/bash-completion.sh Thu Oct 08 16:45:50 2020 +0200 @@ -43,6 +43,7 @@ elif [[ "$w1" == "--connect-to" ]]; then COMPREPLY=($(compgen -W "$(_relpipe_in_jack_completion_ports)" -- "$w0")) 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-midi-messages" ]]; then COMPREPLY=($(compgen -W "${BOOLEAN_VALUES[*]}" -- "$w0")) else OPTIONS=( @@ -51,6 +52,7 @@ "--connect-to" "--required-connections" "--list-ports" + "--list-connections" "--list-midi-messages" ) COMPREPLY=($(compgen -W "${OPTIONS[*]}" -- "$w0"))