From ccf328172bac2b02f9bd19fa58e105958514a28a Mon Sep 17 00:00:00 2001 From: zeertzjq Date: Wed, 26 Jul 2023 21:07:39 +0800 Subject: fix(gen_vimfn_types): don't include tag before signature's line (#24492) When signature is a bit long or there are too many tags, the tags appear before the signature's line. Don't include the line with tags in the previous function' docs. Also fix lint warnings. --- src/nvim/eval.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/nvim/eval.lua b/src/nvim/eval.lua index a9c87e0a6d..173c99e271 100644 --- a/src/nvim/eval.lua +++ b/src/nvim/eval.lua @@ -12,7 +12,7 @@ --- @field func? string Name of the C function which implements the Vimscript function. Defaults to --- `f_{funcname}`. --- @field fast? boolean Function can run in |api-fast| events. Defaults to false. ---- @field deprecated? string[]|true +--- @field deprecated? string[] --- @field returns? string|false -- Usable with the base key: use the last function argument as the method base. -- cgit