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 12edb62 commit 91bd63dCopy full SHA for 91bd63d
server/src/main/kotlin/org/javacs/kt/KotlinWorkspaceService.kt
@@ -140,6 +140,7 @@ class KotlinWorkspaceService(
140
val scripts = config.scripts
141
get("enabled")?.asBoolean?.let { scripts.enabled = it }
142
get("buildScriptsEnabled")?.asBoolean?.let { scripts.buildScriptsEnabled = it }
143
+ sf.updateExclusions()
144
}
145
146
// Update code-completion options
server/src/main/kotlin/org/javacs/kt/SourceFiles.kt
@@ -188,7 +188,7 @@ class SourceFiles(
188
.toSet()
189
190
191
- private fun updateExclusions() {
+ fun updateExclusions() {
192
exclusions = SourceExclusions(workspaceRoots, scriptsConfig)
193
194
0 commit comments