mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-02-03 16:10:05 +08:00
11 lines
190 B
VimL
Vendored
11 lines
190 B
VimL
Vendored
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')
|