commit c28113dd9d09b661061d25c147e39efadc6e700b
parent b88b7f95912b7176b6eeb0c77189e8be7e34b7e7
Author: Olivia Kinnear <git@superatomic.dev>
Date: Tue, 27 Jan 2026 01:54:27 -0600
fix(health): add back `vim.cmd.redraw()` call (#37576)
Was erroneously removed by #37462 during rebase.
Diffstat:
1 file changed, 1 insertion(+), 0 deletions(-)
diff --git a/runtime/lua/vim/health.lua b/runtime/lua/vim/health.lua
@@ -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