mirror of
https://github.com/neovim/neovim
synced 2025-07-15 16:51:49 +00:00
fix(docs): missing @returns
desc in _meta/api.lua #30673
This commit is contained in:
@ -276,7 +276,7 @@ local function get_api_meta()
|
||||
|
||||
if not deprecated then
|
||||
r.desc = fun.desc
|
||||
r.return_desc = fun.returns[1].desc
|
||||
r.returns_desc = fun.returns[1].desc
|
||||
end
|
||||
|
||||
ret[fun.name] = r
|
||||
@ -370,10 +370,9 @@ local function render_api_meta(_f, fun, write)
|
||||
end
|
||||
|
||||
if fun.returns ~= '' then
|
||||
local ret_desc = fun.returns_desc and ' : ' .. fun.returns_desc or ''
|
||||
ret_desc = util.md_to_vimdoc(ret_desc, 0, 0, 74)
|
||||
local ret_desc = fun.returns_desc and ' # ' .. fun.returns_desc or ''
|
||||
local ret = LUA_API_RETURN_OVERRIDES[fun.name] or fun.returns
|
||||
write('--- @return ' .. ret .. ret_desc)
|
||||
write(util.prefix('--- ', '@return ' .. ret .. ret_desc))
|
||||
end
|
||||
local param_str = table.concat(param_names, ', ')
|
||||
|
||||
|
@ -173,6 +173,19 @@ local function parse_md(text)
|
||||
return extract(root) or {}
|
||||
end
|
||||
|
||||
--- Prefixes each line in `text`.
|
||||
---
|
||||
--- Does not wrap, that's not important for "meta" files? (You probably want md_to_vimdoc instead.)
|
||||
---
|
||||
--- @param text string
|
||||
--- @param prefix_ string
|
||||
function M.prefix(prefix_, text)
|
||||
if (text):find('\n$') then
|
||||
return text:gsub('([^\n]*)[\t ]*\n', prefix_ .. '%1\n')
|
||||
end
|
||||
return prefix_ .. text:gsub('([^\n]*)[\t ]*\n', '%1\n' .. prefix_)
|
||||
end
|
||||
|
||||
--- @param x string
|
||||
--- @param start_indent integer
|
||||
--- @param indent integer
|
||||
|
Reference in New Issue
Block a user