mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-04 11:27:46 +03:00
examples: continue handling output events
This commit is contained in:
parent
279db98d3c
commit
6c0f7eafc3
2 changed files with 18 additions and 14 deletions
|
@ -11,6 +11,7 @@ struct LaunchArguments {
|
|||
}
|
||||
|
||||
async fn output(mut output_event: Receiver<Event>) {
|
||||
loop {
|
||||
let body: OutputEventBody =
|
||||
from_value(output_event.recv().await.unwrap().body.unwrap()).unwrap();
|
||||
println!(
|
||||
|
@ -18,6 +19,7 @@ async fn output(mut output_event: Receiver<Event>) {
|
|||
body.category.unwrap_or("unknown".to_owned()),
|
||||
body.output
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
#[tokio::main]
|
||||
|
|
|
@ -11,6 +11,7 @@ struct LaunchArguments {
|
|||
}
|
||||
|
||||
async fn output(mut output_event: Receiver<Event>) {
|
||||
loop {
|
||||
let body: OutputEventBody =
|
||||
from_value(output_event.recv().await.unwrap().body.unwrap()).unwrap();
|
||||
println!(
|
||||
|
@ -18,6 +19,7 @@ async fn output(mut output_event: Receiver<Event>) {
|
|||
body.category.unwrap_or("unknown".to_owned()),
|
||||
body.output
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
#[tokio::main]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue