Skip to content

Commit

Permalink
eclosing ignore patterns for ag searcher
Browse files Browse the repository at this point in the history
  • Loading branch information
fabiogibson committed Dec 6, 2017
1 parent e49787e commit 8b84e49
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion autoload/zvim/util.vim
Expand Up @@ -277,7 +277,7 @@ fu! zvim#util#Generate_ignore(ignore,tool, ...) abort
if a:tool ==# 'ag'
for ig in split(a:ignore,',')
call add(ignore, '--ignore')
call add(ignore, ig )
call add(ignore, "'" . ig . "'")
endfor
elseif a:tool ==# 'rg'
for ig in split(a:ignore,',')
Expand Down

0 comments on commit 8b84e49

Please sign in to comment.