mirror of
https://github.com/neovim/neovim.git
synced 2025-09-17 16:58:17 +00:00
12 lines
253 B
Lua
12 lines
253 B
Lua
---@meta
|
|
|
|
--- Invokes |vim-function| or |user-function| {func} with arguments {...}.
|
|
--- See also |vim.fn|.
|
|
--- Equivalent to:
|
|
--- <pre>lua
|
|
--- vim.fn[func]({...})
|
|
--- </pre>
|
|
--- @param func fun()
|
|
--- @param ... any
|
|
function vim.call(func, ...) end
|