tagCompletion -> tagClosing

This commit is contained in:
Matt Bierner
2018-07-11 09:03:06 -07:00
parent bd3beec042
commit 46db7d9d3b
2 changed files with 1 additions and 1 deletions

View File

@@ -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));
}