microsoft / microsoft/vscode-docs
Add troubleshooting steps for the spawning of excessive rg processes
@ntrogh is already working on this.
Since Jun 18, 2026.
- Dominant language
- Markdown
- Stars
- 6.6k
- Forks
- 5.8k
- Avg merge
- 11h 43m
- Merged PRs (30d)
- 123
Description
Add troubleshooting steps for the spawning of excessive rg processes.
Users still regularly report the an excessive number of rg (ripgrep) processes are spawned. Looking closely at these reports, almost all of them show rg being executed with the --no-ignore flag. When run with this option, rg searches through directories like node_modules, which drastically increases the execution time. I suspect this happens because users do not understand the meaning of the Use Exclude Setting and Ignore Files button in the VS Code Search UI. With the toggle off, rg is executed with the --no-ignore flag.
Troubleshooting steps should advise users encountering this issue to:
- Check the toggle button: Ensure that the "Use Exclude Settings and Ignore Files" button is enabled in the Search UI.
- Verify your ignore settings: Confirm that
search.useIgnoreFilesis set totruein your settings. - Disable symbolic link following: If the issue persists, setting
search.followSymlinkstofalsemay resolve it. - Set in
settings.json:
{
"search.exclude": {
"**/node_modules/**": true,
".claude/worktrees/**": true
}
}
Context:
Contributor guide
First steps
- Read the whole issue, then the project's contributing guide.
- Comment on the issue to say you are picking it up — it saves two people doing the same work.
- Fork the repository and make your change on a branch.
- Open a pull request that references the issue number.
Assessment
This issue has not been assessed yet.