mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-10-04 07:35:49 +00:00
More robust highlighting
This commit is contained in:
parent
010075be6a
commit
8f5330cb07
4 changed files with 38 additions and 3 deletions
|
@ -30,6 +30,7 @@ use {
|
|||
handle_join_lines,
|
||||
handle_completion,
|
||||
handle_runnables,
|
||||
handle_decorations,
|
||||
},
|
||||
};
|
||||
|
||||
|
@ -157,6 +158,9 @@ fn on_request(
|
|||
handle_request_on_threadpool::<req::JoinLines>(
|
||||
&mut req, pool, world, sender, handle_join_lines,
|
||||
)?;
|
||||
handle_request_on_threadpool::<req::DecorationsRequest>(
|
||||
&mut req, pool, world, sender, handle_decorations,
|
||||
)?;
|
||||
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