diff options
author | Aleksey Kladov <[email protected]> | 2020-05-24 16:04:17 +0100 |
---|---|---|
committer | Aleksey Kladov <[email protected]> | 2020-05-24 16:04:17 +0100 |
commit | 5276bfff819520cd27703b5d33a95d9674649e1e (patch) | |
tree | d230171eeb434015d14281e80ef21d06d859866d | |
parent | dec4ba80236e1be15f011fd6b2f7f0ecb151fd31 (diff) |
Fix formatting
-rw-r--r-- | crates/rust-analyzer/src/lsp_ext.rs | 1 | ||||
-rw-r--r-- | crates/rust-analyzer/src/main_loop.rs | 4 |
2 files changed, 1 insertions, 4 deletions
diff --git a/crates/rust-analyzer/src/lsp_ext.rs b/crates/rust-analyzer/src/lsp_ext.rs index c7e31c076..52e4fcbec 100644 --- a/crates/rust-analyzer/src/lsp_ext.rs +++ b/crates/rust-analyzer/src/lsp_ext.rs | |||
@@ -60,7 +60,6 @@ pub struct ExpandedMacro { | |||
60 | pub expansion: String, | 60 | pub expansion: String, |
61 | } | 61 | } |
62 | 62 | ||
63 | |||
64 | pub enum MatchingBrace {} | 63 | pub enum MatchingBrace {} |
65 | 64 | ||
66 | impl Request for MatchingBrace { | 65 | impl Request for MatchingBrace { |
diff --git a/crates/rust-analyzer/src/main_loop.rs b/crates/rust-analyzer/src/main_loop.rs index e28a32c26..f1287d52c 100644 --- a/crates/rust-analyzer/src/main_loop.rs +++ b/crates/rust-analyzer/src/main_loop.rs | |||
@@ -509,9 +509,7 @@ fn on_request( | |||
509 | .on_sync::<lsp_types::request::SelectionRangeRequest>(|s, p| { | 509 | .on_sync::<lsp_types::request::SelectionRangeRequest>(|s, p| { |
510 | handlers::handle_selection_range(s.snapshot(), p) | 510 | handlers::handle_selection_range(s.snapshot(), p) |
511 | })? | 511 | })? |
512 | .on_sync::<lsp_ext::MatchingBrace>(|s, p| { | 512 | .on_sync::<lsp_ext::MatchingBrace>(|s, p| handlers::handle_matching_brace(s.snapshot(), p))? |
513 | handlers::handle_matching_brace(s.snapshot(), p) | ||
514 | })? | ||
515 | .on::<lsp_ext::AnalyzerStatus>(handlers::handle_analyzer_status)? | 513 | .on::<lsp_ext::AnalyzerStatus>(handlers::handle_analyzer_status)? |
516 | .on::<lsp_ext::SyntaxTree>(handlers::handle_syntax_tree)? | 514 | .on::<lsp_ext::SyntaxTree>(handlers::handle_syntax_tree)? |
517 | .on::<lsp_ext::ExpandMacro>(handlers::handle_expand_macro)? | 515 | .on::<lsp_ext::ExpandMacro>(handlers::handle_expand_macro)? |