Merge pull request #23013 from neovim/backport-23009-to-release-0.9

[Backport release-0.9] fix(man.lua): don't continue on command error
This commit is contained in:
zeertzjq
2023-04-11 09:49:38 +08:00
committed by GitHub

View File

@@ -64,6 +64,7 @@ local function system(cmd_, silent, env)
local cmd_str = table.concat(cmd, ' ')
man_error(string.format('command error: %s', cmd_str))
end
return ''
end
vim.wait(30000, function()