fix: don't --follow by default for grep and other things using ripgrep (#11415)

This commit is contained in:
Aiden Cline
2026-01-30 23:38:43 -06:00
committed by GitHub
parent 507f13a30c
commit c0e71c4261
2 changed files with 4 additions and 12 deletions

View File

@@ -37,15 +37,7 @@ export const GrepTool = Tool.define("grep", {
await assertExternalDirectory(ctx, searchPath, { kind: "directory" })
const rgPath = await Ripgrep.filepath()
const args = [
"-nH",
"--hidden",
"--follow",
"--no-messages",
"--field-match-separator=|",
"--regexp",
params.pattern,
]
const args = ["-nH", "--hidden", "--no-messages", "--field-match-separator=|", "--regexp", params.pattern]
if (params.include) {
args.push("--glob", params.include)
}