From aab42eaababeb4d4a654530699d7a9d6ccbf19fe Mon Sep 17 00:00:00 2001 From: Junegunn Choi Date: Sat, 12 Apr 2014 20:02:04 +0900 Subject: [PATCH] Update Vim plugin example --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 1f8e1a13..3e733ef9 100644 --- a/README.md +++ b/README.md @@ -390,10 +390,10 @@ function! g:bufopen(e) endfunction nnoremap :call fzf#run({ -\ 'source': g:buflist(), -\ 'sink': function('g:bufopen'), -\ 'options': '+m +s', -\ 'tmux': 15 +\ 'source': reverse(g:buflist()), +\ 'sink': function('g:bufopen'), +\ 'options': '+m', +\ 'tmux_height': '40%' \ }) ```