mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-10-04 15:45:25 +00:00
Add runnables
This commit is contained in:
parent
b79c8b6d8a
commit
5751815314
7 changed files with 115 additions and 2 deletions
|
@ -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,
|
||||
)?;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue