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

@ -23,6 +23,10 @@ impl super::LspAdapter for GoLspAdapter {
LanguageServerName("gopls".into())
}
async fn server_execution_kind(&self) -> ServerExecutionKind {
ServerExecutionKind::Launch
}
async fn server_args(&self) -> Vec<String> {
vec!["-mode=stdio".into()]
}