From 0054c185001e54316c0ee36841dfe111878a321d Mon Sep 17 00:00:00 2001 From: Lewis Russell Date: Tue, 23 Jan 2024 00:53:15 +0000 Subject: test: typing for screen.lua Very rough buts resolves most diagnostic errors and should provide some useful hovers. --- runtime/lua/vim/_editor.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'runtime/lua') 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 -- cgit