Skip to content

Fix GrepSearch on Windows #1494

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 5 commits into from
May 30, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -101,10 +101,7 @@ export class GrepSearch {

private getRipgrepLibraryPath(): string {
if (process.platform === 'win32') {
// On Windows, the path must be loaded using a URL.
// Using the file path directly results in ERR_UNSUPPORTED_ESM_URL_SCHEME
// More details: https://github.com/nodejs/node/issues/31710
return pathToFileURL(path.join(RIPGREP_DIR, 'rg.exe')).toString()
return path.join(RIPGREP_DIR, 'rg.exe')
}

return path.join(RIPGREP_DIR, 'rg')
Expand Down
Loading