MCPcopy Index your code
hub / github.com/claude-code-best/claude-code / ripgrepCommand

Function ripgrepCommand

src/utils/ripgrep.ts:119–130  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

117}
118
119export function ripgrepCommand(): {
120 rgPath: string
121 rgArgs: string[]
122 argv0?: string
123} {
124 const config = getRipgrepConfig()
125 return {
126 rgPath: config.command,
127 rgArgs: config.args,
128 argv0: config.argv0,
129 }
130}
131
132const MAX_BUFFER_SIZE = 20_000_000 // 20MB; large monorepos can have 200k+ files
133

Callers 6

ripGrepRawFunction · 0.85
ripGrepFileCountFunction · 0.85
ripGrepStreamFunction · 0.85
sandbox-adapter.tsFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected