mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-08-29 17:07:19 +02:00
Enhancements - delete, start
- Implemented delete command. - Implemented start command.
This commit is contained in:
parent
6e6f86783f
commit
1551362d1e
3 changed files with 83 additions and 52 deletions
|
@ -186,9 +186,13 @@ std::string Context::dispatch ()
|
|||
else if (cmd.command == "done") { out = handleDone (); }
|
||||
/*
|
||||
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 == "export") { out = handleExport (); }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue