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

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

17 lines
298 B
Lua
Raw Normal View History

---@meta
2023-07-17 16:32:56 +01:00
-- luacheck: no unused args
--- Invokes |vim-function| or |user-function| {func} with arguments {...}.
--- See also |vim.fn|.
--- Equivalent to:
2023-09-14 08:23:01 -05:00
---
--- ```lua
--- vim.fn[func]({...})
--- ```
---
2024-02-15 10:53:51 +00:00
--- @param func string
--- @param ... any
2024-02-15 10:53:51 +00:00
--- @return any
function vim.call(func, ...) end