summaryrefslogtreecommitdiff
path: root/internal/ui
diff options
context:
space:
mode:
Diffstat (limited to 'internal/ui')
-rw-r--r--internal/ui/ultra.go4
1 files changed, 3 insertions, 1 deletions
diff --git a/internal/ui/ultra.go b/internal/ui/ultra.go
index c772c08..f8c94a4 100644
--- a/internal/ui/ultra.go
+++ b/internal/ui/ultra.go
@@ -83,7 +83,7 @@ func (m Model) ultraHelpSections() []helpSection {
items: []helpItem{
{key: "j, k", desc: "move down/up"},
{key: "pgup, pgdn", desc: "page up/down"},
- {key: "g, G", desc: "go to start/end"},
+ {key: "g, G, 0", desc: "go to start/end"},
{key: "space", desc: "refresh tasks"},
},
},
@@ -1038,6 +1038,8 @@ func (m *Model) handleUltraMode(msg tea.KeyPressMsg) (tea.Model, tea.Cmd) {
m.ultraGoHome()
case "G", "end":
m.ultraGoEnd()
+ case "0":
+ m.ultraGoHome()
case "enter", "e", "E":
return m.handleUltraEditTask()
case "s":