1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-01-23 10:20:05 +08:00

Fix denite config for rg

This commit is contained in:
wsdjeg 2017-05-23 20:17:41 +08:00
parent d22f4344ab
commit 44d53034e9

View File

@ -36,7 +36,7 @@ if !s:sys.isWindows
" For ripgrep
" Note: It is slower than ag
call denite#custom#var('file_rec', 'command',
\ ['rg', '--hidden', '--files', '--glob', '!.git', '']
\ ['rg', '--hidden', '--files', '--glob', '!.git', '--glob', '']
\ + zvim#util#Generate_ignore(g:spacevim_wildignore, 'rg')
\ )
elseif executable('ag')