Skip to content

Commit

Permalink
fix (hx --health): Don't print headers in white
Browse files Browse the repository at this point in the history
If the terminal has a white background, this makes them invisible.
  • Loading branch information
jeanas committed Dec 28, 2024
1 parent 127567d commit d58c251
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion helix-term/src/health.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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)?;

Expand Down

0 comments on commit d58c251

Please sign in to comment.