From f1cc2608651e819b3b6c4a55c88893e0894ad986 Mon Sep 17 00:00:00 2001 From: Greg Kettler Date: Mon, 10 Oct 2016 15:48:20 -0500 Subject: [PATCH] Add -a to grep command so it doesn't stop on "Binary file matches," losing most of my tags >:( --- Examples-(vim).md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Examples-(vim).md b/Examples-(vim).md index 72bd779..44f8e9d 100644 --- a/Examples-(vim).md +++ b/Examples-(vim).md @@ -232,7 +232,7 @@ function! s:tags() call fzf#run({ \ 'source': 'cat '.join(map(tagfiles(), 'fnamemodify(v:val, ":S")')). - \ '| grep -v ^!', + \ '| grep -v -a ^!', \ 'options': '+m -d "\t" --with-nth 1,4.. -n 1 --tiebreak=index', \ 'down': '40%', \ 'sink': function('s:tags_sink')})