1
0
Fork 0

Search for hidden files

This commit is contained in:
Jeremy Kaplan 2018-02-27 09:53:41 -08:00 committed by Jeremy Kaplan
commit e17e08fb03

View file

@ -103,11 +103,11 @@ map ;x :x<CR>
set wildignore+=*.swp,*~
call denite#custom#var('file_rec', 'command',
\ ['rg', '--files'],
\ ['rg', '--files', '--hidden'],
\)
call denite#custom#var('grep', 'command', ['rg'])
call denite#custom#var('grep', 'default_opts',
\ ['--vimgrep', '--no-heading', '--smart-case'])
\ ['--vimgrep', '--no-heading', '--smart-case', '--hidden'])
call denite#custom#var('grep', 'recursive_opts', [])
call denite#custom#var('grep', 'pattern_opt', ['--regexp'])
call denite#custom#var('grep', 'separator', ['--'])