Browse Source

Fix vim file search command

Thomas Dy 5 years ago
parent
commit
b03c35b171
1 changed files with 1 additions and 1 deletions
  1. 1 1
      .vim/init.vim

+ 1 - 1
.vim/init.vim

@@ -110,7 +110,7 @@ call denite#custom#map(
 " use rg or ag if present
 if executable('rg')
   call denite#custom#var('file_rec', 'command',
-        \ ['rg', '--files', '--glob', '!.git', ''])
+        \ ['rg', '--files', '--glob', '!.git'])
   call denite#custom#var('grep', 'command', ['rg'])
   call denite#custom#var('grep', 'default_opts',
         \ ['--vimgrep', '--no-heading'])