bash-completion.sh
branchv_0
changeset 9 14cf28d7681c
parent 2 01553c2ffa1d
child 15 b3239e4ad328
--- a/bash-completion.sh	Fri Oct 02 00:18:34 2020 +0200
+++ b/bash-completion.sh	Fri Oct 02 00:34:14 2020 +0200
@@ -29,9 +29,11 @@
 
 	if   [[ "$w1" == "--TODO"                                          ]];    then COMPREPLY=($(compgen -W "${BOOLEAN[*]}" -- "$w0"))
 	elif [[ "$w1" == "--jack-client-name"             && "x$w0" == "x" ]];    then COMPREPLY=("'relpipe-out-jack'")
+	elif [[ "$w1" == "--required-jack-connections"    && "x$w0" == "x" ]];    then COMPREPLY=("1")
 	else
 		OPTIONS=(
 			"--jack-client-name"
+			"--required-jack-connections"
 		)
 		COMPREPLY=($(compgen -W "${OPTIONS[*]}" -- "$w0"))
 	fi