aboutsummaryrefslogtreecommitdiff
path: root/helix-term/src
diff options
context:
space:
mode:
authorTriton1712022-02-28 08:57:22 +0000
committerGitHub2022-02-28 08:57:22 +0000
commitf044059a2a44c65533aa4704fffd911476060c05 (patch)
tree1aa79c761b570109c4ca683b8770ab7336a05d26 /helix-term/src
parentc15996aff597aa8cb63850c6080bc69470bb84a5 (diff)
Implement LSP `workspace/configuration` and `workspace/didChangeConfiguration` (#1684)
* Implement LSP `workspace/configuration` request * Implement LSP `workspace/didChangeConfiguration` notification. * Simplify retrieval of LSP configuration * Implement suggestions from PR discussion Co-authored-by: Triton171 <triton0171@gmail.com>
Diffstat (limited to 'helix-term/src')
-rw-r--r--helix-term/src/application.rs38
1 files changed, 38 insertions, 0 deletions
diff --git a/helix-term/src/application.rs b/helix-term/src/application.rs
index 986df703..2a7c9c21 100644
--- a/helix-term/src/application.rs
+++ b/helix-term/src/application.rs
@@ -532,6 +532,13 @@ impl Application {
}
};
+ // Trigger a workspace/didChangeConfiguration notification after initialization.
+ // This might not be required by the spec but Neovim does this as well, so it's
+ // probably a good idea for compatibility.
+ if let Some(config) = language_server.config() {
+ tokio::spawn(language_server.did_change_configuration(config.clone()));
+ }
+
let docs = self.editor.documents().filter(|doc| {
doc.language_server().map(|server| server.id()) == Some(server_id)
});
@@ -788,6 +795,37 @@ impl Application {
})),
));
}
+ MethodCall::WorkspaceConfiguration(params) => {
+ let language_server =
+ match self.editor.language_servers.get_by_id(server_id) {
+ Some(language_server) => language_server,
+ None => {
+ warn!("can't find language server with id `{}`", server_id);
+ return;
+ }
+ };
+ let result: Vec<_> = params
+ .items
+ .iter()
+ .map(|item| {
+ let mut config = match &item.scope_uri {
+ Some(scope) => {
+ let path = scope.to_file_path().ok()?;
+ let doc = self.editor.document_by_path(path)?;
+ doc.language_config()?.config.as_ref()?
+ }
+ None => language_server.config()?,
+ };
+ if let Some(section) = item.section.as_ref() {
+ for part in section.split('.') {
+ config = config.get(part)?;
+ }
+ }
+ Some(config)
+ })
+ .collect();
+ tokio::spawn(language_server.reply(id, Ok(json!(result))));
+ }
}
}
e => unreachable!("{:?}", e),