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