You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/providers/FileSystemProvider/TextSearchProvider.ts
+27-8Lines changed: 27 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -111,11 +111,8 @@ export class TextSearchProvider implements vscode.TextSearchProvider {
111
111
if(!params.get("filter")){
112
112
// Unless isfs spec already includes a non-empty filter (which it rarely does), apply includes and excludes at the server side.
113
113
// Convert **/ separators and /** suffix into multiple *-patterns that simulate these elements of glob syntax.
114
-
//
115
-
// When 'Use Exclude Settings and Ignore Files' is enabled (which is typical) options.excludes will also contain entries from files.exclude and search.exclude settings.
116
-
// This will result in additional server-side filtering which is superfluous but harmless other than perhaps incurring a small(?) performance cost.
117
114
118
-
// Function to convert glob-style filters into ones the server understands
115
+
// Function to convert glob-style filters into ones that the server understands
0 commit comments