We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5562872 commit 86571ecCopy full SHA for 86571ec
1 file changed
src/vs/workbench/services/search/node/fileSearchManager.ts
@@ -33,7 +33,6 @@ export interface IDirectoryTree {
33
pathToEntries: { [relativePath: string]: IDirectoryEntry[] };
34
}
35
36
-
37
class FileSearchEngine {
38
private filePattern?: string;
39
private includePattern?: glob.ParsedExpression;
@@ -132,7 +131,7 @@ class FileSearchEngine {
132
131
const providerTime = providerSW.elapsed();
133
const postProcessSW = StopWatch.create();
134
135
- if (this.isCanceled) {
+ if (this.isCanceled && !this.isLimitHit) {
136
return null;
137
138
@@ -153,7 +152,7 @@ class FileSearchEngine {
153
152
154
155
this.activeCancellationTokens.delete(cancellation);
156
157
158
159
0 commit comments