diff options
author | T <t@tjp.lol> | 2025-08-13 21:37:59 -0600 |
---|---|---|
committer | T <t@tjp.lol> | 2025-08-13 21:38:26 -0600 |
commit | 5c076e605185a09b1e570f9aa3c5ddb784ace0f3 (patch) | |
tree | 67b8103ab7d95302bb403388cfb0a61b70d606eb /internal/tui/keys.go | |
parent | 7d0d21ba8663ab7ff777a06f4b113337fa717ff3 (diff) |
edit contractor via 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 05e1a05..52e15f6 100644 --- a/internal/tui/keys.go +++ b/internal/tui/keys.go @@ -57,6 +57,11 @@ var Bindings map[KeyBindingScope]map[string]KeyBinding = map[KeyBindingScope]map Description: func(am AppModel) string { return "Refresh" }, Result: func(am *AppModel) tea.Cmd { return am.refreshCmd }, }, + "c": KeyBinding{ + Key: "c", + Description: func(am AppModel) string { return "Edit Contractor" }, + Result: func(am *AppModel) tea.Cmd { return editContractor() }, + }, "q": KeyBinding{ Key: "q", Description: func(am AppModel) string { return "Quit" }, |