diff options
| author | Paul Buetow <paul@buetow.org> | 2026-04-18 08:41:25 +0300 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2026-04-18 08:41:25 +0300 |
| commit | 0ae497b3ab3bff2693c319c10057c0f8648928bf (patch) | |
| tree | dde9489837bc4ab31be3183936f5dbc7a6851b00 | |
| parent | 4ed6cb28a5e82ca034bdae4f0d3f5e91501d626a (diff) | |
Release v0.14.0v0.14.0
Add '0' key in ultra mode to jump to the first task.
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
| -rw-r--r-- | internal/ui/ultra.go | 4 | ||||
| -rw-r--r-- | internal/version.go | 2 |
2 files changed, 4 insertions, 2 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": diff --git a/internal/version.go b/internal/version.go index 0868e54..1520c59 100644 --- a/internal/version.go +++ b/internal/version.go @@ -1,4 +1,4 @@ package internal // Version is the current version of Task Samurai. -const Version = "0.13.4" +const Version = "0.14.0" |
