summaryrefslogtreecommitdiff
path: root/internal/tui/common
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2026-02-26 23:33:55 +0200
committerPaul Buetow <paul@buetow.org>2026-02-26 23:33:55 +0200
commit4ca34f040203c8e31603bbb39fd38632b68067d8 (patch)
treeeed81b39e169eb6d0cd7d2eca6b338c7c0914ba4 /internal/tui/common
parente5cb5db2292ae84680935767d455a777125e0fe9 (diff)
tui: add paused stream CSV export and foreground editor open
Diffstat (limited to 'internal/tui/common')
-rw-r--r--internal/tui/common/keys.go6
1 files changed, 6 insertions, 0 deletions
diff --git a/internal/tui/common/keys.go b/internal/tui/common/keys.go
index 30bc848..f25886b 100644
--- a/internal/tui/common/keys.go
+++ b/internal/tui/common/keys.go
@@ -68,6 +68,9 @@ func (k KeyMap) DashboardStatusHelp() []key.Binding {
helpTextBinding("h/l", "stream col"),
helpTextBinding("j/k", "scroll"),
helpTextBinding("up/down", "scroll"),
+ helpTextBinding("x", "stream export"),
+ helpTextBinding("X", "stream export as"),
+ helpTextBinding("E", "stream open last"),
)
return bindings
}
@@ -88,6 +91,9 @@ func (k KeyMap) DashboardFullHelp() [][]key.Binding {
helpTextBinding("h/l", "stream col"),
helpTextBinding("j/k", "scroll"),
helpTextBinding("up/down", "scroll"),
+ helpTextBinding("x", "stream export"),
+ helpTextBinding("X", "stream export as"),
+ helpTextBinding("E", "stream open last"),
},
}
}