mirror of
https://github.com/neovim/neovim.git
synced 2025-02-25 18:55:25 -06:00
win: default grepprg to findstr.exe (#7611)
This commit is contained in:
parent
9b6bf8fa37
commit
7b686881a1
@ -993,11 +993,11 @@ return {
|
|||||||
expand=true,
|
expand=true,
|
||||||
varname='p_gp',
|
varname='p_gp',
|
||||||
defaults={
|
defaults={
|
||||||
condition='UNIX',
|
condition='WIN32',
|
||||||
-- Add an extra file name so that grep will always
|
-- Add an extra file name so that grep will always
|
||||||
-- insert a file name in the match line. */
|
-- insert a file name in the match line. */
|
||||||
if_true={vi="grep -n $* /dev/null"},
|
if_true={vi="findstr /n $* nul"},
|
||||||
if_false={vi="grep -n "},
|
if_false={vi="grep -n $* /dev/null"}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user