neovim

Neovim text editor
git clone https://git.dasho.dev/neovim.git
Log | Files | Refs | README

commit 06e4b159ed08b50779e4d4aaab3ccf7a260daeac
parent e51f5e17e18429b847be4e0d99698727dec47ca9
Author: Christian Clason <c.clason@uni-graz.at>
Date:   Sat, 10 Jan 2026 11:50:19 +0100

fix(health): show full curl output

Problem: The health check for `curl` strips the first line of the
version output, which contains potentially useful information.

Solution: Only trim empty lines.

Diffstat:
Mruntime/lua/vim/health/health.lua | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/runtime/lua/vim/health/health.lua b/runtime/lua/vim/health/health.lua @@ -452,7 +452,7 @@ local function check_external_tools() local lines = { string.format('curl %s (%s)', curl_version, curl_path) } for line in vim.gsplit(curl_out, '\n', { plain = true }) do - if line ~= '' and not line:match('^curl') then + if line ~= '' then table.insert(lines, line) end end