mirror of
https://github.com/neovim/neovim.git
synced 2026-03-28 03:12:00 +00:00
docs: api, messages, lsp, trust
gen_vimdoc.lua: In prepare for the upcoming release, comment-out the "Experimental" warning for prerelease features.
This commit is contained in:
@@ -221,12 +221,7 @@ local function get_path(name, sect)
|
||||
sect = sect or ''
|
||||
-- We can avoid relying on -S or -s here since they are very
|
||||
-- inconsistently supported. Instead, call -w with a section and a name.
|
||||
local cmd --- @type string[]
|
||||
if sect == '' then
|
||||
cmd = { 'man', '-w', name }
|
||||
else
|
||||
cmd = { 'man', '-w', sect, name }
|
||||
end
|
||||
local cmd = sect == '' and { 'man', '-w', name } or { 'man', '-w', sect, name }
|
||||
|
||||
local lines = system(cmd, true)
|
||||
local results = vim.split(lines, '\n', { trimempty = true })
|
||||
|
||||
Reference in New Issue
Block a user