From d58c2510fe1b2a0767334e72e7b99c8fc710b540 Mon Sep 17 00:00:00 2001 From: Jean Abou Samra Date: Sat, 28 Dec 2024 18:19:35 +0100 Subject: [PATCH] fix (hx --health): Don't print headers in white If the terminal has a white background, this makes them invisible. --- helix-term/src/health.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helix-term/src/health.rs b/helix-term/src/health.rs index 88e7b27be4d78..fab23b740713f 100644 --- a/helix-term/src/health.rs +++ b/helix-term/src/health.rs @@ -182,7 +182,7 @@ pub fn languages_all() -> std::io::Result<()> { }; for heading in headings { - column(heading, Color::White); + column(heading, Color::Reset); } writeln!(stdout)?;