mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-10-03 23:25:03 +00:00
JoinLines frontend
This commit is contained in:
parent
18918769ba
commit
8ad586a44e
5 changed files with 60 additions and 1 deletions
|
@ -27,6 +27,7 @@ use {
|
|||
handle_goto_definition,
|
||||
handle_find_matching_brace,
|
||||
handle_parent_module,
|
||||
handle_join_lines,
|
||||
},
|
||||
};
|
||||
|
||||
|
@ -145,6 +146,9 @@ fn on_request(
|
|||
handle_request_on_threadpool::<req::ParentModule>(
|
||||
&mut req, pool, world, sender, handle_parent_module,
|
||||
)?;
|
||||
handle_request_on_threadpool::<req::JoinLines>(
|
||||
&mut req, pool, world, sender, handle_join_lines,
|
||||
)?;
|
||||
dispatch::handle_request::<req::ExecuteCommand, _>(&mut req, |params, resp| {
|
||||
io.send(RawMsg::Response(resp.into_response(Ok(None))?));
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue