private async _listFromProviders(type: PromptsType, activationEvent: string, token: CancellationToken): Promise<IExtensionPromptPath[]> {
const readonlyUris: URI[] = [];
// Activate extensions that might provide files for this type
await this.extensionService.activateByEvent(activationEvent);
const providers = this._promptFileProviders.filter(p => p.type === type);
if (providers.length === 0) {
return result;
}