mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-20 08:38:56 +01:00
Use async import for registering update paths
This commit is contained in:
@@ -98,7 +98,9 @@ export default class TypeScriptServiceClientHost extends Disposable {
|
||||
this.languagePerId.set(description.id, manager);
|
||||
}
|
||||
|
||||
this._register(registerUpdatePathsOnRename(this.client, this.fileConfigurationManager, uri => this.handles(uri)));
|
||||
import('./features/updatePathsOnRename').then(module =>
|
||||
this._register(module.register(this.client, this.fileConfigurationManager, uri => this.handles(uri))));
|
||||
|
||||
import('./features/workspaceSymbols').then(module =>
|
||||
this._register(module.register(this.client, allModeIds)));
|
||||
|
||||
|
||||
Reference in New Issue
Block a user