.bash_completion.d/gradle
changeset 866 be65947cc359
parent 865 2fd1c329e686
child 867 33ef236a0dd5
equal deleted inserted replaced
865:2fd1c329e686 866:be65947cc359
   123       _extra+=( --task )
   123       _extra+=( --task )
   124       ;;
   124       ;;
   125     init)
   125     init)
   126       case "$prev" in
   126       case "$prev" in
   127         --type)
   127         --type)
   128           COMPREPLY=( $(compgen -W "basic groovy-library java-library pom scala-library" -- "$cur") )
   128           COMPREPLY=( $(compgen -W "basic groovy-library java-library pom scala-library java-application groovy-application" -- "$cur") )
   129           IFS=$OIFS; return ;;
   129           IFS=$OIFS; return ;;
   130         --test-framework)
   130         --test-framework)
   131           COMPREPLY=( $(compgen -W "spock testng" -- "$cur") )
   131           COMPREPLY=( $(compgen -W "spock testng" -- "$cur") )
   132           IFS=$OIFS; return ;;
   132           IFS=$OIFS; return ;;
   133       esac
   133       esac