m/fzf
1
0
mirror of https://github.com/junegunn/fzf.git synced 2025-11-18 16:45:38 -05:00

Updated Examples (vim) (markdown)

Junegunn Choi
2015-08-09 22:57:54 +09:00
parent 6b2906b02c
commit 8a8526a4f1

@@ -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')})