Unnamed repository; edit this file 'description' to name the repository.
fix: check and print remaining language servers (#12841)
| -rw-r--r-- | helix-term/src/health.rs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/helix-term/src/health.rs b/helix-term/src/health.rs index faf632d8..05e2f9c7 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)))?; } } |