scripts/bash_completion.pl
branchv_0
changeset 159 9632b23df30c
parent 110 ff6bbd0223c3
child 209 8dfe037b3274
     1.1 --- a/scripts/bash_completion.pl	Wed Jan 15 18:15:55 2014 +0100
     1.2 +++ b/scripts/bash_completion.pl	Wed Jan 15 21:06:12 2014 +0100
     1.3 @@ -50,7 +50,7 @@
     1.4  	prev=${COMP_WORDS[COMP_CWORD-1]}
     1.5  
     1.6  	case "$prev" in
     1.7 -	--db | --test-connection)
     1.8 +	--db | --test-connection | --list-jdbc-properties)
     1.9  		if [ -f '.$databasesFile.' ]; then
    1.10  			COMPREPLY=( $( compgen -W " $( cat '.$databasesFile.' ) " -- $cur ) )
    1.11  			return 0