aboutsummaryrefslogtreecommitdiff
path: root/helix-lsp/src/client.rs
diff options
context:
space:
mode:
Diffstat (limited to 'helix-lsp/src/client.rs')
-rw-r--r--helix-lsp/src/client.rs19
1 files changed, 11 insertions, 8 deletions
diff --git a/helix-lsp/src/client.rs b/helix-lsp/src/client.rs
index 9cb7c147..c46bdd8c 100644
--- a/helix-lsp/src/client.rs
+++ b/helix-lsp/src/client.rs
@@ -1136,20 +1136,23 @@ impl Client {
Some(self.call::<lsp::request::CodeActionRequest>(params))
}
+ pub fn supports_rename(&self) -> bool {
+ let capabilities = self.capabilities.get().unwrap();
+ matches!(
+ capabilities.rename_provider,
+ Some(lsp::OneOf::Left(true) | lsp::OneOf::Right(_))
+ )
+ }
+
pub fn rename_symbol(
&self,
text_document: lsp::TextDocumentIdentifier,
position: lsp::Position,
new_name: String,
) -> Option<impl Future<Output = Result<lsp::WorkspaceEdit>>> {
- let capabilities = self.capabilities.get().unwrap();
-
- // Return early if the language server does not support renaming.
- match capabilities.rename_provider {
- Some(lsp::OneOf::Left(true)) | Some(lsp::OneOf::Right(_)) => (),
- // None | Some(false)
- _ => return None,
- };
+ if !self.supports_rename() {
+ return None;
+ }
let params = lsp::RenameParams {
text_document_position: lsp::TextDocumentPositionParams {