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 eeed165 commit 0aee702Copy full SHA for 0aee702
src/vs/workbench/api/common/extHostExtensionService.ts
@@ -966,7 +966,8 @@ export abstract class AbstractExtHostExtensionService extends Disposable impleme
966
967
public $activateByEvent(activationEvent: string, activationKind: ActivationKind): Promise<void> {
968
if (activationKind === ActivationKind.Immediate) {
969
- return this._activateByEvent(activationEvent, false);
+ return this._almostReadyToRunExtensions.wait()
970
+ .then(_ => this._activateByEvent(activationEvent, false));
971
}
972
973
return (
0 commit comments