Explorar el Código

Fix vim file search command

Thomas Dy hace 5 años
padre
commit
b03c35b171
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  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'])