feat(pack): use colored nvim_echo chunks to show progress report

Problem: using `print()` to show progress report writes to `stdout` when
  in `--headless` mode (interferes with the testing output) and doesn't
  allow coloring.

Solution: use `nvim_echo` with colored chunks.
This commit is contained in:
Evgeni Chasnovski
2025-07-29 16:16:40 +03:00
parent 3f34f083db
commit a203961535

View File

@@ -372,7 +372,9 @@ local function new_progress_report(title)
return vim.schedule_wrap(function(kind, percent, fmt, ...)
local progress = kind == 'end' and 'done' or ('%3d%%'):format(percent)
print(('(vim.pack) %s: %s %s'):format(progress, title, fmt:format(...)))
local details = (': %s %s'):format(title, fmt:format(...))
local chunks = { { '(vim.pack)', 'ModeMsg' }, { ' ' }, { progress, 'WarningMsg' }, { details } }
vim.api.nvim_echo(chunks, true, { kind = 'progress' })
-- Force redraw to show installation progress during startup
vim.cmd.redraw({ bang = true })
end)