diff options
author | T <t@tjp.lol> | 2025-08-13 13:04:05 -0600 |
---|---|---|
committer | T <t@tjp.lol> | 2025-08-13 13:42:43 -0600 |
commit | 389b72e55b04ccfc02b04eb81cb8f7bb7a5c8b59 (patch) | |
tree | be3015b2c7db90cddfc85d3e77ddc76213485494 /internal/tui/keys.go | |
parent | 29c6581e08d0fe98433eff218de7701b51a6861c (diff) |
history filtering
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 71dc251..c2f2271 100644 --- a/internal/tui/keys.go +++ b/internal/tui/keys.go @@ -159,6 +159,11 @@ var Bindings map[KeyBindingScope]map[string]KeyBinding = map[KeyBindingScope]map Description: func(AppModel) string { return "Select" }, Result: func(*AppModel) tea.Cmd { return selectHistorySummary() }, }, + "f": KeyBinding{ + Key: "f", + Description: func(AppModel) string { return "Filter" }, + Result: func(*AppModel) tea.Cmd { return createHistoryFilterModal() }, + }, }, ScopeHistoryBoxDetails: { "j": KeyBinding{ |