diff options
author | Lewis Russell <lewis6991@gmail.com> | 2024-01-23 00:53:15 +0000 |
---|---|---|
committer | Lewis Russell <me@lewisr.dev> | 2024-01-23 11:45:17 +0000 |
commit | 0054c185001e54316c0ee36841dfe111878a321d (patch) | |
tree | 130ca3d01fb73443c9ac9fabd93e8182a1cf0634 /runtime/lua/vim/_editor.lua | |
parent | 89ffdebd20fd1d9c1ceff5fb005db11a0cf8c4d4 (diff) | |
download | rneovim-0054c185001e54316c0ee36841dfe111878a321d.tar.gz rneovim-0054c185001e54316c0ee36841dfe111878a321d.tar.bz2 rneovim-0054c185001e54316c0ee36841dfe111878a321d.zip |
test: typing for screen.lua
Very rough buts resolves most diagnostic errors and should provide
some useful hovers.
Diffstat (limited to 'runtime/lua/vim/_editor.lua')
-rw-r--r-- | runtime/lua/vim/_editor.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/lua/vim/_editor.lua b/runtime/lua/vim/_editor.lua index fd49f63558..c130eb1958 100644 --- a/runtime/lua/vim/_editor.lua +++ b/runtime/lua/vim/_editor.lua @@ -352,7 +352,7 @@ function vim.schedule_wrap(fn) end -- vim.fn.{func}(...) ----@private +---@nodoc vim.fn = setmetatable({}, { __index = function(t, key) local _fn |