# HG changeset patch # User František Kučera # Date 1629580388 -7200 # Node ID 3a120e64bb37424c03f93b8ea1f19e81498b8e91 # Parent bc6e11cccdf48e33dd15bdde348eb03d112d59bd add boolean parameter to --list-data-sources + allow listing and SELECTing at the same time: bash-completion.sh diff -r bc6e11cccdf4 -r 3a120e64bb37 bash-completion.sh --- a/bash-completion.sh Sun May 09 18:19:09 2021 +0200 +++ b/bash-completion.sh Sat Aug 21 23:13:08 2021 +0200 @@ -15,7 +15,7 @@ _relpipe_tr_sql_completion_dsn() { if type relpipe-out-nullbyte &> /dev/null; then - relpipe-tr-sql --list-data-sources | relpipe-out-nullbyte | while read -r -d '' name; do read -r -d '' description; echo $name; done + relpipe-tr-sql --list-data-sources true | relpipe-out-nullbyte | while read -r -d '' name; do read -r -d '' description; echo $name; done fi }