Java platform support for Visual Studio Code for full featured Java development (edit-compile-debug & test cycle)
231
stars
31
forks
source link
[JAVAVSCODE #199] Quick Fix actions are unable to edit runConfig options in global settings for non-workspace opened Java files #211
Closed
sid-srini closed 3 months ago
Fixed extension.ts
UpdateConfigurationRequest
handler to update the globalWorkspaceConfiguration
for non-workspace opened files.vscode.workspace.workspaceFile
is undefined/null.WorkspaceConfiguration.update()
withconfigurationTarget =
true
: for non-workspace files;null
: otherwise.await
and used theThenable
chain ofupdate()
.Closes #199