bash-completion.sh
branchv_0
changeset 2 01553c2ffa1d
parent 0 3bc3b33ccb02
child 9 14cf28d7681c
--- a/bash-completion.sh	Tue Sep 29 20:41:10 2020 +0200
+++ b/bash-completion.sh	Tue Sep 29 20:49:04 2020 +0200
@@ -27,10 +27,11 @@
 		"false"
 	)
 
-	if [[ "$w1" == "--TODO"                                            ]];    then COMPREPLY=($(compgen -W "${BOOLEAN[*]}" -- "$w0"))
+	if   [[ "$w1" == "--TODO"                                          ]];    then COMPREPLY=($(compgen -W "${BOOLEAN[*]}" -- "$w0"))
+	elif [[ "$w1" == "--jack-client-name"             && "x$w0" == "x" ]];    then COMPREPLY=("'relpipe-out-jack'")
 	else
 		OPTIONS=(
-			"--TODO"
+			"--jack-client-name"
 		)
 		COMPREPLY=($(compgen -W "${OPTIONS[*]}" -- "$w0"))
 	fi