Add runnables

This commit is contained in:
Aleksey Kladov 2018-08-27 22:03:19 +03:00
parent b79c8b6d8a
commit 5751815314
7 changed files with 115 additions and 2 deletions

View file

@ -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::<req::CodeActionRequest>(
&mut req, pool, world, sender, handle_code_action,
)?;
handle_request_on_threadpool::<req::Runnables>(
&mut req, pool, world, sender, handle_runnables,
)?;
handle_request_on_threadpool::<req::WorkspaceSymbol>(
&mut req, pool, world, sender, handle_workspace_symbol,
)?;