neovim/runtime/lua/vim/_meta/misc.lua

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

16 lines
281 B
Lua
Raw Normal View History

---@meta
2023-07-17 08:32:56 -07:00
-- luacheck: no unused args
--- Invokes |vim-function| or |user-function| {func} with arguments {...}.
--- See also |vim.fn|.
--- Equivalent to:
2023-09-14 06:23:01 -07:00
---
--- ```lua
--- vim.fn[func]({...})
--- ```
---
--- @param func fun()
--- @param ... any
function vim.call(func, ...) end