From ba09cdd2264debb9bccc309e8d5864135584d4fb Mon Sep 17 00:00:00 2001 From: Ian Howell Date: Sun, 10 Feb 2019 00:19:47 -0600 Subject: [PATCH] Formatting --- Examples-(vim).md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Examples-(vim).md b/Examples-(vim).md index 3bc0649..ff63e0e 100644 --- a/Examples-(vim).md +++ b/Examples-(vim).md @@ -51,7 +51,8 @@ array as the source. In the following example, we use the names of the open buffers as the source. ```vim -call fzf#run({'source': map(filter(range(1, bufnr('$')), 'buflisted(v:val)'), 'bufname(v:val)'), +call fzf#run({'source': map(filter(range(1, bufnr('$')), 'buflisted(v:val)'), + \ 'bufname(v:val)'), \ 'sink': 'e', 'down': '30%'}) ```