mirror of
https://github.com/helix-editor/helix.git
synced 2024-11-10 10:35:16 +03:00
Show debugger output in the statusline
This commit is contained in:
parent
afeaba1113
commit
462c8a6ec8
@ -222,6 +222,17 @@ impl Application {
|
||||
self.editor.set_status(status);
|
||||
self.render();
|
||||
}
|
||||
"output" => {
|
||||
let body: helix_dap::events::Output = from_value(ev.body.expect("`output` event must have a body")).unwrap();
|
||||
|
||||
let prefix = match body.category {
|
||||
Some(category) => format!("Debug ({}):", category),
|
||||
None => "Debug:".to_owned(),
|
||||
};
|
||||
|
||||
self.editor.set_status(format!("{} {}", prefix, body.output));
|
||||
self.render();
|
||||
}
|
||||
"initialized" => {
|
||||
self.editor.set_status("Debugged application started".to_owned());
|
||||
self.render();
|
||||
|
Loading…
Reference in New Issue
Block a user