We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 38d478c commit 9f1a99eCopy full SHA for 9f1a99e
server/src/main/kotlin/org/javacs/kt/KotlinWorkspaceService.kt
@@ -135,6 +135,13 @@ class KotlinWorkspaceService(
135
}
136
137
138
+ // Update scripts options
139
+ get("scripts")?.asJsonObject?.apply {
140
+ val scripts = config.scripts
141
+ get("enabled")?.asBoolean?.let { scripts.enabled = it }
142
+ get("buildScriptsEnabled")?.asBoolean?.let { scripts.buildScriptsEnabled = it }
143
+ }
144
+
145
// Update code-completion options
146
get("completion")?.asJsonObject?.apply {
147
val completion = config.completion
0 commit comments