We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
ConfigManager.clearConfigCache
1 parent abb5b68 commit cfaa949Copy full SHA for cfaa949
2 files changed
src/configmanager.ts
@@ -8,7 +8,7 @@ export class ConfigManager {
8
this._configCache = new Map();
9
}
10
11
- clearConfigCache(e: vscode.ConfigurationChangeEvent) {
+ clearConfigCache() {
12
this._configCache.clear();
13
14
src/extension.ts
@@ -105,7 +105,7 @@ class ExtensionLifecycleController {
105
106
onDidChangeConfiguration(e: vscode.ConfigurationChangeEvent) {
107
if (!e.affectsConfiguration("dim")) return;
108
- this.configManager.clearConfigCache(e);
+ this.configManager.clearConfigCache();
109
vscode.window.visibleTextEditors.forEach((editor) => {
110
const ad = this.decorators.get(editor);
111
if (ad) {
0 commit comments