Add local next LSP adapter

This commit is contained in:
Mikayla 2023-09-21 18:06:00 -07:00
parent 0cceb3fdf1
commit 02a85b1252
No known key found for this signature in database
5 changed files with 206 additions and 12 deletions

View file

@ -712,11 +712,11 @@ impl LanguageServer {
}
}
pub fn name<'a>(self: &'a Arc<Self>) -> &'a str {
pub fn name(&self) -> &str {
&self.name
}
pub fn capabilities<'a>(self: &'a Arc<Self>) -> &'a ServerCapabilities {
pub fn capabilities(&self) -> &ServerCapabilities {
&self.capabilities
}