aboutsummaryrefslogtreecommitdiff
path: root/crates
diff options
context:
space:
mode:
Diffstat (limited to 'crates')
-rw-r--r--crates/rust-analyzer/src/config.rs9
1 files changed, 6 insertions, 3 deletions
diff --git a/crates/rust-analyzer/src/config.rs b/crates/rust-analyzer/src/config.rs
index 9cc14fe82..b4c738272 100644
--- a/crates/rust-analyzer/src/config.rs
+++ b/crates/rust-analyzer/src/config.rs
@@ -385,10 +385,13 @@ impl Config {
385 } 385 }
386 386
387 if let Some(code_action) = &doc_caps.code_action { 387 if let Some(code_action) = &doc_caps.code_action {
388 if let Some(resolve_support) = &code_action.resolve_support { 388 match (code_action.data_support, &code_action.resolve_support) {
389 if resolve_support.properties.iter().any(|it| it == "edit") { 389 (Some(true), Some(resolve_support)) => {
390 self.client_caps.code_action_resolve = true; 390 if resolve_support.properties.iter().any(|it| it == "edit") {
391 self.client_caps.code_action_resolve = true;
392 }
391 } 393 }
394 _ => (),
392 } 395 }
393 } 396 }
394 } 397 }