Fix spring-boot.ls config options

They were not properly being synchronised with the user's / workspace
settings.
This commit is contained in:
Kris De Volder
2022-08-22 15:40:09 -07:00
parent afd6b9eac0
commit 20f11c1c5f

View File

@@ -96,7 +96,7 @@ export function activate(context: VSCode.ExtensionContext): Thenable<ExtensionAP
}
],
synchronize: {
configurationSection: 'boot-java'
configurationSection: ['boot-java', 'spring-boot']
},
initializationOptions: () => ({
workspaceFolders: workspace.workspaceFolders ? workspace.workspaceFolders.map(f => f.uri.toString()) : null,