lrbarber commented on issue #64: URL: https://github.com/apache/daffodil-vscode/issues/64#issuecomment-3382668159
The [VS Code API](https://code.visualstudio.com/api/references/vscode-api#WorkspaceConfiguration) provides a way to determine the effective value from the Default/Global/Workspace settings. Here's an example of how to read the workspace setting for workspace folders: > // launch.json configuration > const config = workspace.getConfiguration( > 'launch', > vscode.workspace.workspaceFolders[0].uri > ); > > // retrieve values > const values = config.get('configurations'); However, the values set in the launch.json file are all tied specifically to Daffodil debugger settings (including TDML action and data editor). The only setting that that I see that might be included in global or workspace settings is the "Stop on Entry". It seems that it would be reasonable to default this to "no" when the run option is selected and "yes" when the debug option is selected. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
