diff options
| author | Paul Buetow <paul@buetow.org> | 2026-02-26 23:35:38 +0200 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2026-02-26 23:35:38 +0200 |
| commit | dcdfbcc0a2ee9750e48a8db74b4ca70fdac2f9c6 (patch) | |
| tree | bd410b8b36154ac8ece0f4cc978b91d1a057721a /internal/tui/common/keys.go | |
| parent | 4ca34f040203c8e31603bbb39fd38632b68067d8 (diff) | |
tui: expand quick help with stream hotkeys
Diffstat (limited to 'internal/tui/common/keys.go')
| -rw-r--r-- | internal/tui/common/keys.go | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/internal/tui/common/keys.go b/internal/tui/common/keys.go index f25886b..26a9968 100644 --- a/internal/tui/common/keys.go +++ b/internal/tui/common/keys.go @@ -64,6 +64,12 @@ func (k KeyMap) DashboardStatusHelp() []key.Binding { k.Probes, k.Refresh, k.Quit, + helpTextBinding("space", "stream pause"), + helpTextBinding("f", "stream filter"), + helpTextBinding("g/G", "stream top/tail"), + helpTextBinding("c", "stream clear"), + helpTextBinding("enter", "stream add filter"), + helpTextBinding("esc", "stream undo filter"), helpTextBinding("left/right", "stream col"), helpTextBinding("h/l", "stream col"), helpTextBinding("j/k", "scroll"), @@ -87,6 +93,12 @@ func (k KeyMap) DashboardFullHelp() [][]key.Binding { {k.One, k.Two, k.Three, k.Four, k.Five, k.Six}, controls, { + helpTextBinding("space", "stream pause"), + helpTextBinding("f", "stream filter"), + helpTextBinding("g/G", "stream top/tail"), + helpTextBinding("c", "stream clear"), + helpTextBinding("enter", "stream add filter"), + helpTextBinding("esc", "stream undo filter"), helpTextBinding("left/right", "stream col"), helpTextBinding("h/l", "stream col"), helpTextBinding("j/k", "scroll"), |
