Skip to content

Commit 86550e1

Browse files
snjezafbricon
authored andcommitted
Support Scala in Gradle projects
1 parent c4a1cd6 commit 86550e1

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -234,6 +234,7 @@ The following settings are supported:
234234
* `java.jdt.ls.androidSupport.enabled`: [Experimental] Specify whether to enable Android project importing. When set to `auto`, the Android support will be enabled in Visual Studio Code - Insiders. **Note:** Only works for Android Gradle Plugin `3.2.0` or higher. Defaults to `auto`.
235235
* `java.jdt.ls.kotlinSupport.enabled`: [Experimental] Specify whether to enable `org.jetbrains.kotlin.jvm` plugin in Gradle projects. Defaults to `true`.
236236
* `java.jdt.ls.groovySupport.enabled`: [Experimental] Specify whether to enable `groovy` plugin in Gradle projects. Defaults to `true`.
237+
* `java.jdt.ls.scalaSupport.enabled`: [Experimental] Specify whether to enable `scala` plugin in Gradle projects. Defaults to `true`.
237238
* `java.completion.postfix.enabled`: Enable/disable postfix completion support. Defaults to `true`.
238239
* `java.completion.chain.enabled`: Enable/disable chain completion support. Defaults to `false`.
239240
* `java.completion.matchCase`: Specify whether to match case for code completion. Defaults to `firstLetter`.

package.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -413,6 +413,13 @@
413413
"scope": "window",
414414
"order": 80
415415
},
416+
"java.jdt.ls.scalaSupport.enabled": {
417+
"type": "boolean",
418+
"default": true,
419+
"markdownDescription": "[Experimental] Specify whether to enable `scala` plugin in Gradle projects. Defaults to `true`.",
420+
"scope": "window",
421+
"order": 80
422+
},
416423
"java.jdt.ls.groovySupport.enabled": {
417424
"type": "boolean",
418425
"default": true,

0 commit comments

Comments
 (0)