Update Vim plugin example

This commit is contained in:
Junegunn Choi 2014-04-12 20:02:04 +09:00
parent 16031b0d54
commit aab42eaaba

View File

@ -390,10 +390,10 @@ function! g:bufopen(e)
endfunction
nnoremap <silent> <Leader><Enter> :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%'
\ })<CR>
```