Don't panic on save if language_server isn't initialized
This commit is contained in:
parent
ade1a453ef
commit
64099af3f1
1 changed files with 9 additions and 4 deletions
|
@ -471,10 +471,15 @@ impl Document {
|
|||
let mut file = File::create(path).await?;
|
||||
to_writer(&mut file, encoding, &text).await?;
|
||||
|
||||
if let Some(notification) = language_server.and_then(|language_server| {
|
||||
language_server.text_document_did_save(identifier, &text)
|
||||
}) {
|
||||
notification.await?;
|
||||
if let Some(language_server) = language_server {
|
||||
if language_server.is_initialized() {
|
||||
return Ok(());
|
||||
}
|
||||
if let Some(notification) =
|
||||
language_server.text_document_did_save(identifier, &text)
|
||||
{
|
||||
notification.await?;
|
||||
}
|
||||
}
|
||||
|
||||
Ok(())
|
||||
|
|
Loading…
Add table
Reference in a new issue