From 389b72e55b04ccfc02b04eb81cb8f7bb7a5c8b59 Mon Sep 17 00:00:00 2001 From: T Date: Wed, 13 Aug 2025 13:04:05 -0600 Subject: history filtering --- internal/tui/keys.go | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'internal/tui/keys.go') 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{ -- cgit v1.2.3