浏览代码

Fix vim file search command

Thomas Dy 5 年之前
父节点
当前提交
b03c35b171
共有 1 个文件被更改,包括 1 次插入1 次删除
  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'])