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 4bb7fba commit f7a9c49Copy full SHA for f7a9c49
src/features/codeLensProvider.ts
@@ -35,6 +35,13 @@ export default class OmniSharpCodeLensProvider extends AbstractProvider implemen
35
super(server, reporter);
36
37
this._testManager = testManager;
38
+ this._checkOptions();
39
+
40
+ let configChangedDisposable = vscode.workspace.onDidChangeConfiguration(this._checkOptions, this);
41
+ this.addDisposables(configChangedDisposable);
42
+ }
43
44
+ private _checkOptions(): void {
45
this._options = Options.Read();
46
}
47
0 commit comments