aboutsummaryrefslogtreecommitdiff
path: root/helix-term
diff options
context:
space:
mode:
authorMichael Davis2023-03-13 00:29:58 +0000
committerGitHub2023-03-13 00:29:58 +0000
commit4f066b1cc628e2d3c69da9bdd0b16f1a8e74ce6f (patch)
treeefd67820c6cf8bf8119ac414ce230723423e90b7 /helix-term
parent1126af53b4daa2123ae13d71500cdf5dfd85f386 (diff)
LSP: No-op client/registerCapability requests (#6258)
Diffstat (limited to 'helix-term')
-rw-r--r--helix-term/src/application.rs11
1 files changed, 11 insertions, 0 deletions
diff --git a/helix-term/src/application.rs b/helix-term/src/application.rs
index c7e93995..781e6fa7 100644
--- a/helix-term/src/application.rs
+++ b/helix-term/src/application.rs
@@ -1014,6 +1014,17 @@ impl Application {
.collect();
Ok(json!(result))
}
+ Ok(MethodCall::RegisterCapability(_params)) => {
+ log::warn!("Ignoring a client/registerCapability request because dynamic capability registration is not enabled. Please report this upstream to the language server");
+ // Language Servers based on the `vscode-languageserver-node` library often send
+ // client/registerCapability even though we do not enable dynamic registration
+ // for any capabilities. We should send a MethodNotFound JSONRPC error in this
+ // case but that rejects the registration promise in the server which causes an
+ // exit. So we work around this by ignoring the request and sending back an OK
+ // response.
+
+ Ok(serde_json::Value::Null)
+ }
};
let language_server = match self.editor.language_servers.get_by_id(server_id) {