summaryrefslogtreecommitdiff
path: root/internal/ui/input_helpers.go
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2026-06-22 09:07:07 +0300
committerPaul Buetow <paul@buetow.org>2026-06-22 09:07:07 +0300
commit02f5f1419c4cb5fccc47a0ce4dbf3957e73b0e79 (patch)
tree5ad976209e913bfcf8a022ea1d4c0d3cb0d45c60 /internal/ui/input_helpers.go
parente2795b421a92ec16a64b1780dd71cb1a68b92680 (diff)
Add Taskwarrior shell promptv0.18.0
Add an in-app Taskwarrior command prompt for normal and ultra modes, including selected-task prefill, async completions, captured output, and non-interactive recurrence handling. Also preserve recurring-task delete/undo support in the staged changes.
Diffstat (limited to 'internal/ui/input_helpers.go')
-rw-r--r--internal/ui/input_helpers.go3
1 files changed, 3 insertions, 0 deletions
diff --git a/internal/ui/input_helpers.go b/internal/ui/input_helpers.go
index 159eb6b..d1fdad6 100644
--- a/internal/ui/input_helpers.go
+++ b/internal/ui/input_helpers.go
@@ -81,6 +81,9 @@ func (m *Model) handleEditingModes(msg tea.KeyPressMsg) (handled bool, model tea
case m.searching:
model, cmd = m.handleSearchMode(msg)
return true, model, cmd
+ case m.shellActive:
+ model, cmd = m.handleShellMode(msg)
+ return true, model, cmd
case m.helpSearching:
model, cmd = m.handleHelpSearchMode(msg)
return true, model, cmd