mirror of
https://github.com/neovim/neovim.git
synced 2025-12-15 19:05:40 +00:00
docs(lua): move function docs to lua files
This commit is contained in:
11
runtime/lua/vim/_meta/misc.lua
Normal file
11
runtime/lua/vim/_meta/misc.lua
Normal file
@@ -0,0 +1,11 @@
|
||||
---@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
|
||||
Reference in New Issue
Block a user