From c28113dd9d09b661061d25c147e39efadc6e700b Mon Sep 17 00:00:00 2001 From: Olivia Kinnear Date: Tue, 27 Jan 2026 01:54:27 -0600 Subject: [PATCH] fix(health): add back `vim.cmd.redraw()` call (#37576) Was erroneously removed by #37462 during rebase. --- runtime/lua/vim/health.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/runtime/lua/vim/health.lua b/runtime/lua/vim/health.lua index 0ad3c860d2..663d4872bd 100644 --- 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