Skip to content

Commit

Permalink
Fix searching of project folders for newer servers (#1318)
Browse files Browse the repository at this point in the history
  • Loading branch information
isc-bsaviano authored Feb 26, 2024
1 parent 4165510 commit 466ad84
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/providers/FileSystemProvider/TextSearchProvider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -426,7 +426,7 @@ export class TextSearchProvider implements vscode.TextSearchProvider {
word: query.isWordMatch, // Ignored if regex is true
case: query.isCaseSensitive, // Ignored if regex is true
wild: false, // Ignored if regex is true
documents: fileSpecFromURI(options.folder), // Ignored if project is defined
documents: project ? undefined : fileSpecFromURI(options.folder),
system, // Ignored if project is defined
generated, // Ignored if project is defined
mapped, // Ignored if project is defined
Expand Down

0 comments on commit 466ad84

Please sign in to comment.