提交 882a8855 编写于 作者: R Rob Lourens

Fix #48771 - ignore global gitignore and rg config for file search

上级 408b89ab
......@@ -204,6 +204,9 @@ function getRgArgs(options: vscode.FileSearchOptions): string[] {
args.push('--follow');
}
args.push('--no-config');
args.push('--no-ignore-global');
// Folder to search
args.push('--');
......
......@@ -74,6 +74,9 @@ function getRgArgs(config: IRawSearch, folderQuery: IFolderSearch, includePatter
args.push('--quiet');
}
args.push('--no-config');
args.push('--no-ignore-global');
// Folder to search
args.push('--');
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册