diff options
author | Aleksey Kladov <[email protected]> | 2020-11-10 19:38:10 +0000 |
---|---|---|
committer | Aleksey Kladov <[email protected]> | 2020-11-10 19:38:34 +0000 |
commit | 0caa4918932cd70b8eef58279a1a5e783ac19fb1 (patch) | |
tree | 550000df7814916070ccc056bdfea81a67958a10 /crates | |
parent | 7d2eb000b078143e9fa6225d00ef52fc7c606fdf (diff) |
Be more pedantic when checking codeAction/resolve support
Diffstat (limited to 'crates')
-rw-r--r-- | crates/rust-analyzer/src/config.rs | 9 |
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 | } |