mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-08-29 17:07:19 +02:00
Enhancement - done command
- Implemented done command.
This commit is contained in:
parent
c65b6e9f48
commit
9f1880e050
5 changed files with 39 additions and 33 deletions
|
@ -182,12 +182,14 @@ std::string Context::dispatch ()
|
|||
else if (cmd.command == "append") { out = handleAppend (); }
|
||||
/*
|
||||
else if (cmd.command == "annotate") { out = handleAnnotate (); }
|
||||
*/
|
||||
else if (cmd.command == "done") { out = handleDone (); }
|
||||
else if (cmd.command == "undelete") { out = handleUndelete (); }
|
||||
/*
|
||||
else if (cmd.command == "undo") { out = handleUndo (); }
|
||||
else if (cmd.command == "delete") { out = handleDelete (); }
|
||||
else if (cmd.command == "undelete") { out = handleUndelete (); }
|
||||
else if (cmd.command == "start") { out = handleStart (); }
|
||||
else if (cmd.command == "stop") { out = handleStop (); }
|
||||
else if (cmd.command == "undo") { out = handleUndo (); }
|
||||
*/
|
||||
else if (cmd.command == "export") { out = handleExport (); }
|
||||
/*
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue