From 8a8526a4f18664fe535505be0dd564337a02fee5 Mon Sep 17 00:00:00 2001 From: Junegunn Choi Date: Sun, 9 Aug 2015 22:57:54 +0900 Subject: [PATCH] Updated Examples (vim) (markdown) --- Examples-(vim).md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Examples-(vim).md b/Examples-(vim).md index 676d432..d3b1de2 100644 --- a/Examples-(vim).md +++ b/Examples-(vim).md @@ -119,7 +119,7 @@ function! s:tags() endif call fzf#run({ - \ 'source': 'cat '.join(map(tagfiles(), 'fnamemodify(v:val, ":S")')), + \ 'source': 'grep -v ^! '.join(map(tagfiles(), 'fnamemodify(v:val, ":S")')), \ 'options': '+m -d "\t" --with-nth 1,4.. -n 1 --tiebreak=index', \ 'down': '40%', \ 'sink': function('s:tags_sink')})