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 Permalink 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]({...})
--- ```
---
2024-02-15 03:53:51 -07:00
--- @param func string
--- @param ... any
2024-02-15 03:53:51 -07:00
--- @return any
function vim.call(func, ...) end