Report if language server requires Node or not

This commit is contained in:
Julia 2023-03-21 14:39:20 -04:00
parent d89936e4a9
commit b579211861
13 changed files with 75 additions and 8 deletions

View file

@ -19,6 +19,10 @@ impl LspAdapter for RustLspAdapter {
LanguageServerName("rust-analyzer".into())
}
async fn server_execution_kind(&self) -> ServerExecutionKind {
ServerExecutionKind::Launch
}
async fn fetch_latest_server_version(
&self,
http: Arc<dyn HttpClient>,