Fix usage of getConfiguration

This commit is contained in:
Sandeep Somavarapu
2017-10-05 23:50:44 +02:00
parent 2a8be527e5
commit 7f89b24319
7 changed files with 9 additions and 9 deletions

View File

@@ -68,7 +68,7 @@ export class MainThreadWorkspace implements MainThreadWorkspaceShape {
}
const useRipgrep = folderQueries.every(folderQuery => {
const folderConfig = this._configurationService.getConfiguration<ISearchConfiguration>(undefined, { resource: folderQuery.folder });
const folderConfig = this._configurationService.getConfiguration<ISearchConfiguration>({ resource: folderQuery.folder });
return folderConfig.search.useRipgrep;
});