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.
2 parents 5997fec + 80694ed commit 19d22cbCopy full SHA for 19d22cb
src/lifecycle/ConfigurationManager.ts
@@ -42,9 +42,6 @@ export interface Settings {
42
43
type SettingName = 'installPath' | 'matlabConnectionTiming' | 'indexWorkspace' | 'telemetry' | 'maxFileSizeForAnalysis' | 'signIn'
44
45
-
46
47
48
const SETTING_NAMES: SettingName[] = [
49
'installPath',
50
'matlabConnectionTiming',
@@ -148,10 +145,10 @@ class ConfigurationManager {
148
145
this.configuration = await connection.workspace.getConfiguration('MATLAB') as Settings
149
146
}
150
147
151
- return this.configuration
+ return Object.assign(this.defaultConfiguration, this.configuration)
152
153
154
- return this.globalSettings
+ return Object.assign(this.defaultConfiguration, this.globalSettings)
155
156
157
/**
0 commit comments