From 57518153147ad53639f16cc940d219dc582c550a Mon Sep 17 00:00:00 2001 From: Aleksey Kladov Date: Mon, 27 Aug 2018 22:03:19 +0300 Subject: Add runnables --- 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 5213ecc04..6d6ca6ae9 100644 --- a/crates/server/src/main_loop/mod.rs +++ b/crates/server/src/main_loop/mod.rs @@ -29,6 +29,7 @@ use { handle_parent_module, handle_join_lines, handle_completion, + handle_runnables, }, }; @@ -138,6 +139,9 @@ fn on_request( handle_request_on_threadpool::( &mut req, pool, world, sender, handle_code_action, )?; + handle_request_on_threadpool::( + &mut req, pool, world, sender, handle_runnables, + )?; handle_request_on_threadpool::( &mut req, pool, world, sender, handle_workspace_symbol, )?; -- cgit v1.2.3