1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-02-02 23:00:04 +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 " For ripgrep
" Note: It is slower than ag " Note: It is slower than ag
call denite#custom#var('file_rec', 'command', 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') \ + zvim#util#Generate_ignore(g:spacevim_wildignore, 'rg')
\ ) \ )
elseif executable('ag') elseif executable('ag')