From 38d0129f3c0674f884152b94f74aaacc859586f3 Mon Sep 17 00:00:00 2001 From: Junegunn Choi Date: Sun, 9 Aug 2015 23:03:47 +0900 Subject: [PATCH] Formatting --- Examples-(vim).md | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/Examples-(vim).md b/Examples-(vim).md index c69156d..f12b2ea 100644 --- a/Examples-(vim).md +++ b/Examples-(vim).md @@ -163,10 +163,11 @@ endfunction function! s:btags() try - call fzf#run({'source': s:btags_source(), - \'down': '40%', - \'options': '+m -d "\t" --with-nth 1,4.. -n 1 --tiebreak=index', - \'sink': function('s:btags_sink')}) + call fzf#run({ + \ 'source': s:btags_source(), + \ 'options': '+m -d "\t" --with-nth 1,4.. -n 1 --tiebreak=index', + \ 'down': '40%', + \ 'sink': function('s:btags_sink')}) catch echohl WarningMsg echom v:exception