From 4fbcace7fea02eb4a7781650b8e7a8c3362dd3a2 Mon Sep 17 00:00:00 2001 From: Junegunn Choi Date: Tue, 28 Jul 2015 23:24:23 +0900 Subject: [PATCH] Updated Examples (vim) (markdown) --- Examples-(vim).md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Examples-(vim).md b/Examples-(vim).md index c700fc3..a59f001 100644 --- a/Examples-(vim).md +++ b/Examples-(vim).md @@ -64,10 +64,10 @@ nnoremap :call fzf#run({ ```vim command! FZFMru call fzf#run({ - \'source': v:oldfiles, - \'sink' : 'e ', - \'options' : '-m', - \}) +\ 'source': v:oldfiles, +\ 'sink': 'e', +\ 'options': '-m', +\ 'down': '40%'}) ``` #### Filtered `v:oldfiles` and open buffers @@ -76,7 +76,7 @@ command! FZFMru call fzf#run({ command! FZFMru call fzf#run({ \ 'source': reverse(s:all_files()), \ 'sink': 'edit', -\ 'options': '-m --no-sort -x', +\ 'options': '-m -x +s', \ 'down': '40%' }) function! s:all_files()