diff --git a/helix-term/src/health.rs b/helix-term/src/health.rs index faf632d87..05e2f9c7e 100644 --- a/helix-term/src/health.rs +++ b/helix-term/src/health.rs @@ -224,8 +224,7 @@ pub fn languages_all() -> std::io::Result<()> { for cmd in cmds { write!(stdout, "{}", fit(""))?; - check_binary(Some(cmd)); - writeln!(stdout)?; + writeln!(stdout, "{}", check_binary(Some(cmd)))?; } }