Unnamed repository; edit this file 'description' to name the repository.
Handle RPC returning an invalid call
Blaž Hrastnik 2022-03-23
parent 3e78b8f · commit 919ac7b
-rw-r--r--helix-term/src/application.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/helix-term/src/application.rs b/helix-term/src/application.rs
index 269ce13d..d8208eed 100644
--- a/helix-term/src/application.rs
+++ b/helix-term/src/application.rs
@@ -801,7 +801,7 @@ impl Application {
}
}
}
- e => unreachable!("{:?}", e),
+ Call::Invalid { id } => log::error!("LSP invalid method call id={:?}", id),
}
}