Skip to content

Commit db2841a

Browse files
committed
Support Scala in Gradle projects
1 parent dca8a27 commit db2841a

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -228,6 +228,7 @@ The following settings are supported:
228228
* `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`.
229229
* `java.jdt.ls.kotlinSupport.enabled`: [Experimental] Specify whether to enable `org.jetbrains.kotlin.jvm` plugin in Gradle projects. Defaults to `true`.
230230
* `java.jdt.ls.groovySupport.enabled`: [Experimental] Specify whether to enable `groovy` plugin in Gradle projects. Defaults to `true`.
231+
* `java.jdt.ls.scalaSupport.enabled`: [Experimental] Specify whether to enable `scala` plugin in Gradle projects. Defaults to `true`.
231232
* `java.completion.postfix.enabled`: Enable/disable postfix completion support. Defaults to `true`.
232233
* `java.completion.chain.enabled`: Enable/disable chain completion support. Defaults to `false`.
233234
* `java.completion.matchCase`: Specify whether to match case for code completion. Defaults to `firstLetter`.

package.json

Lines changed: 8 additions & 1 deletion
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,
@@ -2133,4 +2140,4 @@
21332140
},
21342141
"segmentWriteKey": "Y7Y5Xk8dKEhVZHTmAkFZkqgdN4d7c4lt",
21352142
"segmentWriteKeyDebug": "BflPll7uuKOCm3y0g7JpfXLVBVFBivDE"
2136-
}
2143+
}

0 commit comments

Comments
 (0)