Update Vim example: Rename functions

See: ftp://ftp.vim.org/pub/vim/patches/7.4/7.4.260
This commit is contained in:
Junegunn Choi 2014-06-09 10:05:08 +09:00
parent d7c734acd6
commit d76a3646b7

View File

@ -395,20 +395,20 @@ handy mapping that selects an open buffer.
```vim
" List of buffers
function! g:buflist()
function! BufList()
redir => ls
silent ls
redir END
return split(ls, '\n')
endfunction
function! g:bufopen(e)
function! BufOpen(e)
execute 'buffer '. matchstr(a:e, '^[ 0-9]*')
endfunction
nnoremap <silent> <Leader><Enter> :call fzf#run({
\ 'source': reverse(g:buflist()),
\ 'sink': function('g:bufopen'),
\ 'source': reverse(BufList()),
\ 'sink': function('BufOpen'),
\ 'options': '+m',
\ 'tmux_height': '40%'
\ })<CR>