# HG changeset patch # User Oleksandr Gavenko # Date 1579350409 -7200 # Node ID 9e7576e732d631da2eeb143c52f2c807bd44fbd2 # Parent a2beae97e3d862c5465f3fc6db6b20460f32060d Added default completion for Gradle "test" cmd. diff -r a2beae97e3d8 -r 9e7576e732d6 .bash_completion.d/gradle --- a/.bash_completion.d/gradle Sat Jan 18 00:19:38 2020 +0200 +++ b/.bash_completion.d/gradle Sat Jan 18 14:26:49 2020 +0200 @@ -94,6 +94,9 @@ wrapper) COMPREPLY=( --gradle-version ) IFS=$OIFS; return ;; + test) + COMPREPLY=( --tests ) + IFS=$OIFS; return ;; dependencies|dependencyInsight) COMPREPLY=( --configuration ) IFS=$OIFS; return ;;