[tui] Add bottom status bar with help text.

Fixes #3
This commit is contained in:
2026-01-22 20:35:40 -05:00
parent 0c87fda795
commit a3c1065f96
5 changed files with 42 additions and 10 deletions

View File

@@ -33,7 +33,11 @@ impl Logger {
pub fn new() -> Self {
Self {
state: TuiWidgetState::new(),
component_state: Default::default(),
component_state: ComponentState::default().with_help_text(concat!(
"Q: Quit | Tab: Switch state | ↑/↓: Select target | f: Focus target",
" | ←/→: Display level | +/-: Filter level | Space: Toggle hidden targets",
" | h: Hide target selector | PageUp/Down: Scroll | Esc: Cancel scroll"
)),
}
}
}