1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-01-24 02:20:03 +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'
for ig in split(a:ignore,',')
call add(ignore, '-g')
call add(ignore, "'!" . ig . "'")
call add(ignore, '!' . ig)
endfor
endif
return ignore