Konfigurieren Sie die automatische Vervollständigung von IntelliJ für Gradle-Skripte in kotlin

Ich probiere aus gradle-script-kotlin mit einfacher Hallo-Welt-Anwendung in IntelliJ. Aber IntelliJ Auto-Vervollständigung erscheint nicht in build.gradle.kts Datei

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

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'

Ich habe IntelliJ Kotlin Plugin und Gradle Plugin installiert und benutze Gradle 3.0. Die Beispielanwendung arbeitet mit gradle-Befehlen.

Wie konfiguriere ich IntelliJ, um die automatische Vervollständigung für die Datei build.gradle.kts zu aktivieren?

Ich verwende IntelliJ 2016.2.2 mit der Kotlin-Plugin-Version: 1.0.3-release-IJ2016.1-120

Antworten auf die Frage(6)

Ihre Antwort auf die Frage