We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c56dd94 commit f5b90a4Copy full SHA for f5b90a4
src/vs/workbench/services/search/node/ripgrepTextSearchEngine.ts
@@ -92,7 +92,10 @@ export class RipgrepTextSearchEngine {
92
rgProc.stderr!.on('data', data => {
93
const message = data.toString();
94
this.outputChannel.appendLine(message);
95
- stderr += message;
+
96
+ if (stderr.length + message.length < 1e6) {
97
+ stderr += message;
98
+ }
99
});
100
101
rgProc.on('close', () => {
0 commit comments