Enable yaml-language-server lookup in PATH (#22036)

Release Notes:

- Added support for checking for `yaml-language-server` on the`$PATH`.

Co-authored-by: Marshall Bowers <elliott.codes@gmail.com>
This commit is contained in:
Henry Chu 2025-01-10 05:06:21 +08:00 committed by GitHub
parent d3eae024a2
commit b2eceeb4f2
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -54,6 +54,22 @@ impl LspAdapter for YamlLspAdapter {
) as Box<_>)
}
async fn check_if_user_installed(
&self,
delegate: &dyn LspAdapterDelegate,
_: Arc<dyn LanguageToolchainStore>,
_: &AsyncAppContext,
) -> Option<LanguageServerBinary> {
let path = delegate.which(Self::SERVER_NAME.as_ref()).await?;
let env = delegate.shell_env().await;
Some(LanguageServerBinary {
path,
env: Some(env),
arguments: vec!["--stdio".into()],
})
}
async fn fetch_server_binary(
&self,
latest_version: Box<dyn 'static + Send + Any>,