Skip to content

Commit

Permalink
also search in hidden files
Browse files Browse the repository at this point in the history
  • Loading branch information
alaindresse committed Sep 30, 2024
1 parent 98259f9 commit a0ef06c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/util/wrappedFindFiles.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { getWorkspaceFolders } from './workspace'

async function ripgrep (glob: string, rootFolder: string): Promise<string[]> {
return new Promise((resolve, reject) => {
const rg = spawn(rgPath, ['--files', '-g', glob], { cwd: rootFolder })
const rg = spawn(rgPath, ['--hidden', '--files', '-g', glob], { cwd: rootFolder })
let stdout : string = ''
let stderr = ''

Expand Down

0 comments on commit a0ef06c

Please sign in to comment.