ripgrep: add --pre-glob flag

The --pre-glob flag is like the --glob flag, except it applies to filtering
files through the preprocessor instead of for search. This makes it
possible to apply the preprocessor to only a small subset of files, which
can greatly reduce the process overhead of using a preprocessor when
searching large directories.
This commit is contained in:
Andrew Gallant
2018-09-04 22:45:24 -04:00
parent b6e30124e0
commit 241bc8f8fc
6 changed files with 159 additions and 59 deletions

View File

@@ -46,6 +46,8 @@ Feature enhancements:
The `--passthru` flag now works with the `--replace` flag.
* FEATURE:
Add `--line-buffered` and `--block-buffered` for forcing a buffer strategy.
* FEATURE:
Add `--pre-glob` for filtering files through the `--pre` flag.
Bug fixes: