# HG changeset patch # User František Kučera # Date 1606603745 -3600 # Node ID bdf04cd913085c869fdf92483da0a69ee3d80bf3 # Parent 8c3fe9af6066e2dff1f12ad7e8778c40c531c480 bash-completion: fix quotes diff -r 8c3fe9af6066 -r bdf04cd91308 bash-completion.sh --- a/bash-completion.sh Sat Nov 28 21:15:51 2020 +0100 +++ b/bash-completion.sh Sat Nov 28 23:49:05 2020 +0100 @@ -65,7 +65,7 @@ elif [[ "$w2" == "--parser-option" && "$w1" == "dialect" ]]; then COMPREPLY=($(compgen -W "${DIALECTS[*]}" -- "$w0")) elif [[ "$w2" == "--parser-option" && "$w1" == "comment-separators" && "x$w0" == "x" ]]; then COMPREPLY=("'#;'") elif [[ "$w2" == "--parser-option" && "$w1" == "key-value-separators" && "x$w0" == "x" ]]; then COMPREPLY=("'=:'") - elif [[ "$w2" == "--parser-option" && "$w1" == "quotes" && "x$w0" == "x" ]]; then COMPREPLY=("'\"\\''") + elif [[ "$w2" == "--parser-option" && "$w1" == "quotes" && "x$w0" == "x" ]]; then COMPREPLY=("\$'\"\\''") else OPTIONS=( "--relation"