1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-02-03 06:10:05 +08:00
This commit is contained in:
wsdjeg 2017-05-16 21:47:10 +08:00
parent fc50dcc198
commit c0fecda644

View File

@ -277,7 +277,7 @@ fu! zvim#util#Generate_ignore(ignore,tool) abort
elseif a:tool ==# 'rg' elseif a:tool ==# 'rg'
for ig in split(a:ignore,',') for ig in split(a:ignore,',')
call add(ignore, '-g') call add(ignore, '-g')
call add(ignore, "'!" . ig . "'") call add(ignore, '!' . ig)
endfor endfor
endif endif
return ignore return ignore