diff -r 2cc2d3f658f4 -r f33464965693 bash-completion.sh --- a/bash-completion.sh Mon Jun 20 00:55:56 2022 +0200 +++ b/bash-completion.sh Fri Jul 01 22:56:30 2022 +0200 @@ -36,7 +36,8 @@ ) COLOR_SCHEMES=( - "green-screen" + "greenish" + "amberish" "monochrome" "midnight" ) @@ -46,7 +47,7 @@ elif [[ "$w1" == "--write-relation-name" ]]; then COMPREPLY=($(compgen -W "${BOOLEAN_VALUES[*]}" -- "$w0")) elif [[ "$w1" == "--write-record-count" ]]; then COMPREPLY=($(compgen -W "${BOOLEAN_VALUES[*]}" -- "$w0")) elif [[ "$w1" == "--table-style" ]]; then COMPREPLY=($(compgen -W "${TABLE_STYLES[*]}" -- "$w0")) - elif [[ "$w1" == "--color-scheme" ]]; then COMPREPLY=($(compgen -W "${COLOR_SCHEMES[*]}" -- "$w0")) + elif [[ "$w1" == "--color-scheme" ]]; then COMPREPLY=($(compgen -W "${COLOR_SCHEMES[*]}" -- "$w0")) else OPTIONS=( "--relation"