1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-02-03 18:50:03 +08:00
SpaceVim/bundle/vim-lookup/test/fixture/plugin/auto.vim

11 lines
190 B
VimL
Raw Normal View History

2022-03-22 14:33:27 +08:00
function! Foo(...)
endfunction
call Foo(auto#foo#var,v:lang)
silent! echomsg auto#foo#var
call Foo(auto#foo#func(1,2))
silent! echomsg auto#foo#func()
let Bar = function('auto#foo#func')