From c91a13f0910a4ff3c49255fa9efabed7cfe79ed4 Mon Sep 17 00:00:00 2001 From: Nathan Huizinga Date: Sat, 20 May 2017 16:55:27 +0200 Subject: [PATCH] Bug fix for issue #63. Ag does not support multiple inclusion expressions. So it's disabled. --- plugin/EasyGrep.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin/EasyGrep.vim b/plugin/EasyGrep.vim index eb90012..495530a 100755 --- a/plugin/EasyGrep.vim +++ b/plugin/EasyGrep.vim @@ -2498,7 +2498,7 @@ function! s:ConfigureGrepCommandParameters() \ 'opt_bool_directoryneedsbackslash': '0', \ 'opt_bool_isinherentlyrecursive': '1', \ 'opt_bool_isselffiltering': '0', - \ 'opt_bool_nofiletargets': '0', + \ 'opt_bool_nofiletargets': '1', \ 'opt_str_mapinclusionsexpression': '"--file-search-regex=\"" .substitute(v:val, "^\\*\\.", "\\\\.", "")."\""', \ 'opt_str_hiddenswitch': '--hidden', \ 'opt_str_binaryswitch': '--search-binary',