diff -r cb9577442d3b -r 1a0fbd17db13 bash-completion.sh --- 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