forked from niuiic/blink-cmp-rg.nvim
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(performance): max_filesize option (def: 1M) skips large files
By default, ripgrep will search all files in the project, which can be slow if there are large files. Now, files larger than 1 megabyte are skipped from the search altogether by default. This can be customized with the `max_filesize` option in the `blink-ripgrep` configuration. The possible values are determined by ripgrep itself. Examples: - "1024" (bytes by default) - "200K" - "1M" - "999G" (effectively opts out of ignoring any files)
- Loading branch information
1 parent
aeded6f
commit ceeff2f
Showing
2 changed files
with
13 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters