aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLorenzo Bellina2023-10-16 09:42:25 +0000
committerGitHub2023-10-16 09:42:25 +0000
commitd9d7f67898a09816f51e9a699975a97734ec114f (patch)
treea5e901facdb3f8a21c38582bfe402e28e333edbf
parent7c98b1c8293139e0ddbd8a71bdc350f5e0cef41c (diff)
Add support for showing all LSPs in --health (#7315)
* Add support for showing all LSPs in --health <lang> * Add support for showing all LSPs in --health languages * Use available/configured in --health languages * Apply @AlexanderBrevig suggestion in --health * Update `--health <language>` Better output (inspired by #8156). Handle the case where no LSPs are configured. * Display all LSPs in `--health languages` instead of x/x Displays all LSPs as a list in the table generated wih `--health languages` * Make check_binary accept Optional references to str Avoids some calls to .clone() * Apply @the-mikedavis suggestions * Avoid useless collecting and cloning * Use for loop instead of .try_for_each()
-rw-r--r--helix-term/src/health.rs60
1 files changed, 44 insertions, 16 deletions
diff --git a/helix-term/src/health.rs b/helix-term/src/health.rs
index 8f921877..dff90319 100644
--- a/helix-term/src/health.rs
+++ b/helix-term/src/health.rs
@@ -181,8 +181,8 @@ pub fn languages_all() -> std::io::Result<()> {
.language
.sort_unstable_by_key(|l| l.language_id.clone());
- let check_binary = |cmd: Option<String>| match cmd {
- Some(cmd) => match which::which(&cmd) {
+ let check_binary = |cmd: Option<&str>| match cmd {
+ Some(cmd) => match which::which(cmd) {
Ok(_) => column(&format!("✓ {}", cmd), Color::Green),
Err(_) => column(&format!("✘ {}", cmd), Color::Red),
},
@@ -192,17 +192,15 @@ pub fn languages_all() -> std::io::Result<()> {
for lang in &syn_loader_conf.language {
column(&lang.language_id, Color::Reset);
- // TODO multiple language servers (check binary for each supported language server, not just the first)
-
- let lsp = lang.language_servers.first().and_then(|ls| {
+ let mut cmds = lang.language_servers.iter().filter_map(|ls| {
syn_loader_conf
.language_server
.get(&ls.name)
- .map(|config| config.command.clone())
+ .map(|config| config.command.as_str())
});
- check_binary(lsp);
+ check_binary(cmds.next());
- let dap = lang.debugger.as_ref().map(|dap| dap.command.to_string());
+ let dap = lang.debugger.as_ref().map(|dap| dap.command.as_str());
check_binary(dap);
for ts_feat in TsFeature::all() {
@@ -213,6 +211,12 @@ pub fn languages_all() -> std::io::Result<()> {
}
writeln!(stdout)?;
+
+ for cmd in cmds {
+ column("", Color::Reset);
+ check_binary(Some(cmd));
+ writeln!(stdout)?;
+ }
}
Ok(())
@@ -268,15 +272,12 @@ pub fn language(lang_str: String) -> std::io::Result<()> {
}
};
- // TODO multiple language servers
- probe_protocol(
+ probe_protocols(
"language server",
- lang.language_servers.first().and_then(|ls| {
- syn_loader_conf
- .language_server
- .get(&ls.name)
- .map(|config| config.command.clone())
- }),
+ lang.language_servers
+ .iter()
+ .filter_map(|ls| syn_loader_conf.language_server.get(&ls.name))
+ .map(|config| config.command.as_str()),
)?;
probe_protocol(
@@ -291,6 +292,33 @@ pub fn language(lang_str: String) -> std::io::Result<()> {
Ok(())
}
+/// Display diagnostics about multiple LSPs and DAPs.
+fn probe_protocols<'a, I: Iterator<Item = &'a str> + 'a>(
+ protocol_name: &str,
+ server_cmds: I,
+) -> std::io::Result<()> {
+ let stdout = std::io::stdout();
+ let mut stdout = stdout.lock();
+ let mut server_cmds = server_cmds.peekable();
+
+ write!(stdout, "Configured {}s:", protocol_name)?;
+ if server_cmds.peek().is_none() {
+ writeln!(stdout, "{}", " None".yellow())?;
+ return Ok(());
+ }
+ writeln!(stdout)?;
+
+ for cmd in server_cmds {
+ let (path, icon) = match which::which(cmd) {
+ Ok(path) => (path.display().to_string().green(), "✓".green()),
+ Err(_) => (format!("'{}' not found in $PATH", cmd).red(), "✘".red()),
+ };
+ writeln!(stdout, " {} {}: {}", icon, cmd, path)?;
+ }
+
+ Ok(())
+}
+
/// Display diagnostics about LSP and DAP.
fn probe_protocol(protocol_name: &str, server_cmd: Option<String>) -> std::io::Result<()> {
let stdout = std::io::stdout();