diff options
author | T <t@tjp.lol> | 2025-08-13 15:25:23 -0600 |
---|---|---|
committer | T <t@tjp.lol> | 2025-08-13 16:02:05 -0600 |
commit | e9e6eb4e456ee53da5a6ef743251410d4d3d8381 (patch) | |
tree | d722145a5f7a3dd07623e96045078983b3a14e4c /internal/tui/keys.go | |
parent | d6781f3e5b431057c23b2deaa943f273699e37f5 (diff) |
report generation modal
Diffstat (limited to 'internal/tui/keys.go')
-rw-r--r-- | internal/tui/keys.go | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/internal/tui/keys.go b/internal/tui/keys.go index 3a7242d..69ce223 100644 --- a/internal/tui/keys.go +++ b/internal/tui/keys.go @@ -174,6 +174,11 @@ var Bindings map[KeyBindingScope]map[string]KeyBinding = map[KeyBindingScope]map Description: func(AppModel) string { return "Bottom" }, Result: func(*AppModel) tea.Cmd { return changeSelectionToBottom() }, }, + "R": KeyBinding{ + Key: "R", + Description: func(AppModel) string { return "Report" }, + Result: func(*AppModel) tea.Cmd { return createReportModal() }, + }, }, ScopeHistoryBoxDetails: { "j": KeyBinding{ |