bash-completion.sh
branchv_0
changeset 2 1a0fbd17db13
parent 0 7ef5ce9477c8
child 3 62ced7c41c67
--- a/bash-completion.sh	Fri May 06 23:06:44 2022 +0200
+++ b/bash-completion.sh	Sun May 08 21:42:25 2022 +0200
@@ -34,13 +34,11 @@
 	)
 
 	if   [[ "$w1" == "--relation"                      && "x$w0" == "x" ]];    then COMPREPLY=("''")
-	elif [[ "$w1" == "--unlink-on-close"                                ]];    then COMPREPLY=($(compgen -W "${BOOLEAN_VALUES[*]}" -- "$w0"))
-	elif [[ "$w1" == "--queue"                         && "x$w0" == "x" ]];    then COMPREPLY=("''")
+	elif [[ "$w1" == "--stream"                        && "x$w0" == "x" ]];    then COMPREPLY=("''")
 	else
 		OPTIONS=(
 			"--relation"
-			"--unlink-on-close"
-			"--queue"
+			"--stream"
 		)
 		COMPREPLY=($(compgen -W "${OPTIONS[*]}" -- "$w0"))
 	fi