diff -r 3c6374467a82 -r c22577615ce4 bash-completion.sh --- a/bash-completion.sh Thu Sep 24 18:57:20 2020 +0200 +++ b/bash-completion.sh Wed Oct 07 16:42:37 2020 +0200 @@ -28,15 +28,15 @@ ) if [[ "$w1" == "--relation" && "x$w0" == "x" ]]; then COMPREPLY=("'.+'") - elif [[ "$w1" == "--print-types" ]]; then COMPREPLY=($(compgen -W "${BOOLEAN_VALUES[*]}" -- "$w0")) - elif [[ "$w1" == "--print-relation-name" ]]; then COMPREPLY=($(compgen -W "${BOOLEAN_VALUES[*]}" -- "$w0")) - elif [[ "$w1" == "--print-record-count" ]]; then COMPREPLY=($(compgen -W "${BOOLEAN_VALUES[*]}" -- "$w0")) + elif [[ "$w1" == "--write-types" ]]; then COMPREPLY=($(compgen -W "${BOOLEAN_VALUES[*]}" -- "$w0")) + elif [[ "$w1" == "--write-relation-name" ]]; then COMPREPLY=($(compgen -W "${BOOLEAN_VALUES[*]}" -- "$w0")) + elif [[ "$w1" == "--write-record-count" ]]; then COMPREPLY=($(compgen -W "${BOOLEAN_VALUES[*]}" -- "$w0")) else OPTIONS=( "--relation" - "--print-types" - "--print-relation-name" - "--print-record-count" + "--write-types" + "--write-relation-name" + "--write-record-count" ) COMPREPLY=($(compgen -W "${OPTIONS[*]}" -- "$w0")) fi