-
The CLI is a bit surprising, possibly in part because I've not really used taskwarrior:
I think taskwarrior supports both
For example 'task add --help" seems like a reasonable thing to try, but not clear how to support both that producing help text, and "task add Implement --help for my app" adding a new task. Whereas if tasks strings need quoted, like I'm not sure about this as it breaks from taskwarrior in quite an obvious way |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
Let's get an issue filed for Similarly, I think it makes sense to reproduce some of TW's "are you sure" prompts -- those were good UX decisions! I think at least one of them is based on the number of tasks affected? Let's get an issue filed to add Undo is #92. It's hard! Quoting is always available, but I think we can continue to get away without requiring it. So |
Beta Was this translation helpful? Give feedback.
Let's get an issue filed for
task start 1
-- that should work. In general, I think things are almost always unambiguous, and with sufficient testing we can ensure we do the "natural" thing in the corner cases.Similarly, I think it makes sense to reproduce some of TW's "are you sure" prompts -- those were good UX decisions! I think at least one of them is based on the number of tasks affected?
Let's get an issue filed to add
--help
support for each subcommand, too. That's an exception to the CLI model that doesn't typically use--xyz
options, because people do tend to guess--help
!Undo is #92. It's hard!
Quoting is always available, but I think we can continue to get away without requiri…