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 endfunction
nnoremap <silent> <Leader><Enter> :call fzf#run({ nnoremap <silent> <Leader><Enter> :call fzf#run({
\ 'source': g:buflist(), \ 'source': reverse(g:buflist()),
\ 'sink': function('g:bufopen'), \ 'sink': function('g:bufopen'),
\ 'options': '+m +s', \ 'options': '+m',
\ 'tmux': 15 \ 'tmux_height': '40%'
\ })<CR> \ })<CR>
``` ```