Configurar a conclusão automática do IntelliJ para script gradle no kotlin

Estou tentandogradle-script-kotlin com aplicação simples olá mundo no IntelliJ. MasIntelliJ o preenchimento automático não aparecebuild.gradle.kts Arquivo.

https://github.com/gradle/gradle-script-kotlin/tree/master/samples/hello-world

build.gradle.kts:

apply<ApplicationPlugin>()

configure<ApplicationPluginConvention> {
    mainClassName = ".HelloWorld"
}

configure<JavaPluginConvention> {
    setSourceCompatibility(1.8)
    setTargetCompatibility(1.8)
}

repositories {
    jcenter()
}

dependencies {
    testCompile("junit:junit:4.12")
}

settings.gradle:

rootProject.buildFileName = 'build.gradle.kts'

Eu tenho o plugin IntelliJ kotlin e o plugin gradle instalados e usando o gradle 3.0. O aplicativo de amostra funciona com comandos gradle.

Como configurar o IntelliJ para ativar o preenchimento automático no arquivo build.gradle.kts?

Estou usando o IntelliJ 2016.2.2 com a versão do plugin kotlin: 1.0.3-release-IJ2016.1-120

questionAnswers(3)

yourAnswerToTheQuestion