aboutsummaryrefslogtreecommitdiff
path: root/crates/rust-analyzer/src/main_loop.rs
diff options
context:
space:
mode:
authorbors[bot] <26634292+bors[bot]@users.noreply.github.com>2020-06-03 21:31:25 +0100
committerGitHub <[email protected]>2020-06-03 21:31:25 +0100
commit65a3cc21edd8acd93b728d094514bafddcb1757a (patch)
tree8327b508541f80ff539c2b13559e7f2df2fe4d6b /crates/rust-analyzer/src/main_loop.rs
parent794f6da821c5d6e2490b996baffe162e4753262d (diff)
parent6cd2e04bd2a703c335566224e8b6bf773b83c0c6 (diff)
Merge #4717
4717: Implementation of lazy assits r=matklad a=mcrakhman Co-authored-by: Mikhail Rakhmanov <[email protected]>
Diffstat (limited to 'crates/rust-analyzer/src/main_loop.rs')
-rw-r--r--crates/rust-analyzer/src/main_loop.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/crates/rust-analyzer/src/main_loop.rs b/crates/rust-analyzer/src/main_loop.rs
index 1f8f6b978..e60337b8e 100644
--- a/crates/rust-analyzer/src/main_loop.rs
+++ b/crates/rust-analyzer/src/main_loop.rs
@@ -509,6 +509,7 @@ fn on_request(
509 .on::<lsp_ext::Runnables>(handlers::handle_runnables)? 509 .on::<lsp_ext::Runnables>(handlers::handle_runnables)?
510 .on::<lsp_ext::InlayHints>(handlers::handle_inlay_hints)? 510 .on::<lsp_ext::InlayHints>(handlers::handle_inlay_hints)?
511 .on::<lsp_ext::CodeActionRequest>(handlers::handle_code_action)? 511 .on::<lsp_ext::CodeActionRequest>(handlers::handle_code_action)?
512 .on::<lsp_ext::ResolveCodeActionRequest>(handlers::handle_resolve_code_action)?
512 .on::<lsp_types::request::OnTypeFormatting>(handlers::handle_on_type_formatting)? 513 .on::<lsp_types::request::OnTypeFormatting>(handlers::handle_on_type_formatting)?
513 .on::<lsp_types::request::DocumentSymbolRequest>(handlers::handle_document_symbol)? 514 .on::<lsp_types::request::DocumentSymbolRequest>(handlers::handle_document_symbol)?
514 .on::<lsp_types::request::WorkspaceSymbol>(handlers::handle_workspace_symbol)? 515 .on::<lsp_types::request::WorkspaceSymbol>(handlers::handle_workspace_symbol)?