aboutsummaryrefslogtreecommitdiff
path: root/helix-term/src
diff options
context:
space:
mode:
Diffstat (limited to 'helix-term/src')
-rw-r--r--helix-term/src/health.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/helix-term/src/health.rs b/helix-term/src/health.rs
index 7f582cbf..bd74f478 100644
--- a/helix-term/src/health.rs
+++ b/helix-term/src/health.rs
@@ -134,8 +134,8 @@ pub fn languages_all() -> std::io::Result<()> {
let check_binary = |cmd: Option<String>| match cmd {
Some(cmd) => match which::which(&cmd) {
- Ok(_) => column(&cmd, Color::Green),
- Err(_) => column(&cmd, Color::Red),
+ Ok(_) => column(&format!("✔ {}", cmd), Color::Green),
+ Err(_) => column(&format!("✘ {}", cmd), Color::Red),
},
None => column("None", Color::Yellow),
};