Skip to content

Commit 0795182

Browse files
committed
Search provider - wait for all * activations before searching with provider
1 parent 0401bcb commit 0795182

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

src/vs/workbench/services/search/node/searchService.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -125,6 +125,7 @@ export class SearchService extends Disposable implements ISearchService {
125125

126126
const providerActivations: TPromise<any>[] = [TPromise.wrap(null)];
127127
schemesInQuery.forEach(scheme => providerActivations.push(this.extensionService.activateByEvent(`onSearch:${scheme}`)));
128+
providerActivations.push(this.extensionService.activateByEvent('*'));
128129

129130
const providerPromise = TPromise.join(providerActivations)
130131
.then(() => this.extensionService.whenInstalledExtensionsRegistered())

0 commit comments

Comments
 (0)