mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-04 19:37:54 +03:00
lsp: doc.language_server() is None until initialize completes
This commit is contained in:
parent
46f3c69f06
commit
37606bad47
2 changed files with 15 additions and 2 deletions
|
@ -93,6 +93,10 @@ impl Client {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
pub fn is_initialized(&self) -> bool {
|
||||||
|
self.capabilities.get().is_some()
|
||||||
|
}
|
||||||
|
|
||||||
pub fn capabilities(&self) -> &lsp::ServerCapabilities {
|
pub fn capabilities(&self) -> &lsp::ServerCapabilities {
|
||||||
self.capabilities
|
self.capabilities
|
||||||
.get()
|
.get()
|
||||||
|
|
|
@ -798,9 +798,18 @@ impl Document {
|
||||||
self.version
|
self.version
|
||||||
}
|
}
|
||||||
|
|
||||||
#[inline]
|
|
||||||
pub fn language_server(&self) -> Option<&helix_lsp::Client> {
|
pub fn language_server(&self) -> Option<&helix_lsp::Client> {
|
||||||
self.language_server.as_deref()
|
let server = self.language_server.as_deref();
|
||||||
|
let initialized = server
|
||||||
|
.map(|server| server.is_initialized())
|
||||||
|
.unwrap_or(false);
|
||||||
|
|
||||||
|
// only resolve language_server if it's initialized
|
||||||
|
if initialized {
|
||||||
|
server
|
||||||
|
} else {
|
||||||
|
None
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#[inline]
|
#[inline]
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue