summaryrefslogtreecommitdiff
path: root/internal/ui/handlers.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/ui/handlers.go')
-rw-r--r--internal/ui/handlers.go2
1 files changed, 2 insertions, 0 deletions
diff --git a/internal/ui/handlers.go b/internal/ui/handlers.go
index 3122a34..d61e166 100644
--- a/internal/ui/handlers.go
+++ b/internal/ui/handlers.go
@@ -601,6 +601,8 @@ func (m *Model) handleTaskDetailMode(msg tea.KeyPressMsg) (tea.Model, tea.Cmd) {
case "G", "end":
m.detailFieldIndex = m.getDetailFieldCount() - 1
return m, nil
+ case "o":
+ return m.handleOpenURL()
case "i", "enter":
// Check if current field is editable
return m.handleDetailFieldEdit()