Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/microsoft/vscode.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/vs/workbench/parts/search/browser/searchView.ts1
-rw-r--r--src/vs/workbench/parts/search/common/queryBuilder.ts4
2 files changed, 3 insertions, 2 deletions
diff --git a/src/vs/workbench/parts/search/browser/searchView.ts b/src/vs/workbench/parts/search/browser/searchView.ts
index 85bd5d5d603..fe81d90a0f5 100644
--- a/src/vs/workbench/parts/search/browser/searchView.ts
+++ b/src/vs/workbench/parts/search/browser/searchView.ts
@@ -1069,7 +1069,6 @@ export class SearchView extends Viewlet implements IViewlet, IPanel {
isRegExp: isRegex,
isCaseSensitive: isCaseSensitive,
isWordMatch: isWholeWords,
- wordSeparators: this.configurationService.getValue<ISearchConfiguration>().editor.wordSeparators,
isSmartCase: this.configurationService.getValue<ISearchConfiguration>().search.smartCase
};
diff --git a/src/vs/workbench/parts/search/common/queryBuilder.ts b/src/vs/workbench/parts/search/common/queryBuilder.ts
index 525753bcae8..8d13bef82a3 100644
--- a/src/vs/workbench/parts/search/common/queryBuilder.ts
+++ b/src/vs/workbench/parts/search/common/queryBuilder.ts
@@ -73,6 +73,8 @@ export class QueryBuilder {
if (contentPattern) {
this.resolveSmartCaseToCaseSensitive(contentPattern);
+
+ contentPattern.wordSeparators = this.configurationService.getValue<ISearchConfiguration>().editor.wordSeparators;
}
const query: ISearchQuery = {
@@ -88,7 +90,7 @@ export class QueryBuilder {
maxResults: options.maxResults,
sortByScore: options.sortByScore,
cacheKey: options.cacheKey,
- contentPattern: contentPattern,
+ contentPattern,
useRipgrep,
disregardIgnoreFiles: options.disregardIgnoreFiles || !useIgnoreFiles,
disregardExcludeSettings: options.disregardExcludeSettings,