diff options
author | Luna Saphie Mittelbach <lunarlambda@gmail.com> | 2024-04-28 18:00:48 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-28 09:00:48 -0700 |
commit | 513fc461957f370f9e89b3cfd56cb03a816d6941 (patch) | |
tree | 03098d5684503e0a5a145a63a69d2c0956aca7e5 /runtime/lua/vim/_defaults.lua | |
parent | 83635e4e3db9a99c128e84e79deb590da354215d (diff) | |
download | rneovim-513fc461957f370f9e89b3cfd56cb03a816d6941.tar.gz rneovim-513fc461957f370f9e89b3cfd56cb03a816d6941.tar.bz2 rneovim-513fc461957f370f9e89b3cfd56cb03a816d6941.zip |
feat(defaults): improve :grep defaults #28545
Based on feedback from #28324, pass -H and -I to regular grep
(available on all platforms officially supported by Neovim), and
only pass -uu to ripgrep. This makes :grep ignore binary files by
default in both cases.
Diffstat (limited to 'runtime/lua/vim/_defaults.lua')
-rw-r--r-- | runtime/lua/vim/_defaults.lua | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/runtime/lua/vim/_defaults.lua b/runtime/lua/vim/_defaults.lua index e9575c0e1e..7166f7a23c 100644 --- a/runtime/lua/vim/_defaults.lua +++ b/runtime/lua/vim/_defaults.lua @@ -560,9 +560,8 @@ end do --- Default 'grepprg' to ripgrep if available. if vim.fn.executable('rg') == 1 then - -- Match :grep default, otherwise rg searches cwd by default - -- Use -uuu to make ripgrep not do its default filtering - vim.o.grepprg = 'rg --vimgrep -uuu $* ' .. (vim.fn.has('unix') == 1 and '/dev/null' or 'nul') + -- Use -uu to make ripgrep not check ignore files/skip dot-files + vim.o.grepprg = 'rg --vimgrep -uu ' vim.o.grepformat = '%f:%l:%c:%m' end end |