mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-08-26 15:47:19 +02:00
Enhancement - #326
- Added feature #326, allowing tasks to be added in the completed state, by using the 'log' command in place of 'add' (thanks to Cory Donnelly). - Added log command to task.1 man page. - Added log command to task-tutorial.5 man page. - Added log command to help text. - Added log command unit tests.
This commit is contained in:
parent
336a4dea01
commit
fcbc8a2ee2
12 changed files with 143 additions and 2 deletions
|
@ -219,6 +219,7 @@ int Context::dispatch (std::string &out)
|
|||
else if (cmd.command == "calendar") { rc = handleReportCalendar (out); }
|
||||
else if (cmd.command == "timesheet") { rc = handleReportTimesheet (out); }
|
||||
else if (cmd.command == "add") { rc = handleAdd (out); }
|
||||
else if (cmd.command == "log") { rc = handleLog (out); }
|
||||
else if (cmd.command == "append") { rc = handleAppend (out); }
|
||||
else if (cmd.command == "prepend") { rc = handlePrepend (out); }
|
||||
else if (cmd.command == "annotate") { rc = handleAnnotate (out); }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue