From 46db7d9d3b60bdbdc0e2a0033104fffec022ca0b Mon Sep 17 00:00:00 2001 From: Matt Bierner Date: Wed, 11 Jul 2018 09:03:06 -0700 Subject: [PATCH] tagCompletion -> tagClosing --- .../src/features/{tagCompletion.ts => tagClosing.ts} | 0 extensions/typescript-language-features/src/languageProvider.ts | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) rename extensions/typescript-language-features/src/features/{tagCompletion.ts => tagClosing.ts} (100%) diff --git a/extensions/typescript-language-features/src/features/tagCompletion.ts b/extensions/typescript-language-features/src/features/tagClosing.ts similarity index 100% rename from extensions/typescript-language-features/src/features/tagCompletion.ts rename to extensions/typescript-language-features/src/features/tagClosing.ts diff --git a/extensions/typescript-language-features/src/languageProvider.ts b/extensions/typescript-language-features/src/languageProvider.ts index c963ef6586c..c49323457ae 100644 --- a/extensions/typescript-language-features/src/languageProvider.ts +++ b/extensions/typescript-language-features/src/languageProvider.ts @@ -91,7 +91,7 @@ export default class LanguageProvider { this.disposables.push((await import('./features/referencesCodeLens')).register(selector, this.description.id, this.client, cachedResponse)); this.disposables.push((await import('./features/rename')).register(selector, this.client)); this.disposables.push((await import('./features/signatureHelp')).register(selector, this.client)); - this.disposables.push((await import('./features/tagCompletion')).register(selector, this.description.id, this.client)); + this.disposables.push((await import('./features/tagClosing')).register(selector, this.description.id, this.client)); this.disposables.push((await import('./features/typeDefinitions')).register(selector, this.client)); this.disposables.push((await import('./features/workspaceSymbols')).register(this.client, this.description.modeIds)); }