diff options
author | zeertzjq <zeertzjq@outlook.com> | 2023-07-26 21:07:39 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-26 21:07:39 +0800 |
commit | ccf328172bac2b02f9bd19fa58e105958514a28a (patch) | |
tree | 5165f6c2e14a86768fe2ceb8ff482d0785376086 /src | |
parent | fd089c8e50c211d7beae15dbc9492ae5a1a5f2e2 (diff) | |
download | rneovim-ccf328172bac2b02f9bd19fa58e105958514a28a.tar.gz rneovim-ccf328172bac2b02f9bd19fa58e105958514a28a.tar.bz2 rneovim-ccf328172bac2b02f9bd19fa58e105958514a28a.zip |
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.
Diffstat (limited to 'src')
-rw-r--r-- | src/nvim/eval.lua | 2 |
1 files changed, 1 insertions, 1 deletions
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. |