diff options
Diffstat (limited to 'crates/ra_lsp_server/src/main_loop.rs')
-rw-r--r-- | crates/ra_lsp_server/src/main_loop.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/crates/ra_lsp_server/src/main_loop.rs b/crates/ra_lsp_server/src/main_loop.rs index dc1f8f3f7..87b4e3ac2 100644 --- a/crates/ra_lsp_server/src/main_loop.rs +++ b/crates/ra_lsp_server/src/main_loop.rs | |||
@@ -306,6 +306,7 @@ fn on_request( | |||
306 | .on::<req::WorkspaceSymbol>(handlers::handle_workspace_symbol)? | 306 | .on::<req::WorkspaceSymbol>(handlers::handle_workspace_symbol)? |
307 | .on::<req::GotoDefinition>(handlers::handle_goto_definition)? | 307 | .on::<req::GotoDefinition>(handlers::handle_goto_definition)? |
308 | .on::<req::GotoImplementation>(handlers::handle_goto_implementation)? | 308 | .on::<req::GotoImplementation>(handlers::handle_goto_implementation)? |
309 | .on::<req::GotoTypeDefinition>(handlers::handle_goto_type_definition)? | ||
309 | .on::<req::ParentModule>(handlers::handle_parent_module)? | 310 | .on::<req::ParentModule>(handlers::handle_parent_module)? |
310 | .on::<req::Runnables>(handlers::handle_runnables)? | 311 | .on::<req::Runnables>(handlers::handle_runnables)? |
311 | .on::<req::DecorationsRequest>(handlers::handle_decorations)? | 312 | .on::<req::DecorationsRequest>(handlers::handle_decorations)? |