Unnamed repository; edit this file 'description' to name the repository.
Merge #11504
11504: Fix a typo in server_capabilities.experimental r=lnicola a=nemethf
Commit 27c4be6b4f68 wasn't really complex, but I still managed to make a mistake there, which this PR fixes. Sorry.
Co-authored-by: Felicián Németh <[email protected]>
| -rw-r--r-- | crates/rust-analyzer/src/caps.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/rust-analyzer/src/caps.rs b/crates/rust-analyzer/src/caps.rs index a1acd543c5..457399a618 100644 --- a/crates/rust-analyzer/src/caps.rs +++ b/crates/rust-analyzer/src/caps.rs @@ -117,7 +117,7 @@ pub fn server_capabilities(config: &Config) -> ServerCapabilities { "hoverRange": true, "joinLines": true, "matchingBrace": true, - "moveItems": true, + "moveItem": true, "onEnter": true, "openCargoToml": true, "parentModule": true, |