fix(health): add back vim.cmd.redraw() call (#37576)

Was erroneously removed by #37462 during rebase.
This commit is contained in:
Olivia Kinnear
2026-01-27 01:54:27 -06:00
committed by GitHub
parent b88b7f9591
commit c28113dd9d

View File

@@ -383,6 +383,7 @@ local function progress_report(len)
-- percent=0 omits the reporting of percentage, so use 1% instead
-- progress.percent = progress.percent == 0 and 1 or progress.percent
progress.id = vim.api.nvim_echo({ { fmt:format(...) } }, false, progress)
vim.cmd.redraw()
end
end