From c631b585a7358d1569a051f2529ecaae222e95cd Mon Sep 17 00:00:00 2001 From: Aleksey Kladov Date: Thu, 16 Aug 2018 00:23:22 +0300 Subject: matching brace --- crates/server/src/main_loop/mod.rs | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'crates/server/src/main_loop/mod.rs') diff --git a/crates/server/src/main_loop/mod.rs b/crates/server/src/main_loop/mod.rs index 2a31297be..4d5dfb437 100644 --- a/crates/server/src/main_loop/mod.rs +++ b/crates/server/src/main_loop/mod.rs @@ -26,6 +26,7 @@ use { handle_execute_command, handle_workspace_symbol, handle_goto_definition, + handle_find_matching_brace, }, }; @@ -148,6 +149,9 @@ fn on_request( handle_request_on_threadpool::( &mut req, pool, path_map, world, sender, handle_extend_selection, )?; + handle_request_on_threadpool::( + &mut req, pool, path_map, world, sender, handle_find_matching_brace, + )?; handle_request_on_threadpool::( &mut req, pool, path_map, world, sender, handle_document_symbol, )?; -- cgit v1.2.3