mirror of
https://github.com/GothenburgBitFactory/timewarrior.git
synced 2025-07-07 20:06:39 +02:00
CmdUntag: Added 'untag' command
This commit is contained in:
parent
126f0da6af
commit
19aa8b7ac4
4 changed files with 85 additions and 1 deletions
|
@ -75,6 +75,7 @@ void initializeEntities (CLI& cli)
|
|||
cli.entity ("command", "tags");
|
||||
cli.entity ("command", "track");
|
||||
cli.entity ("command", "undo");
|
||||
cli.entity ("command", "untag");
|
||||
|
||||
// Some command list themselves as extensions, to integrate with the real
|
||||
// extensions.
|
||||
|
@ -262,6 +263,7 @@ int dispatchCommand (
|
|||
else if (command == "tags") status = CmdTags ( rules, database );
|
||||
else if (command == "track") status = CmdTrack (cli, rules, database );
|
||||
else if (command == "undo") status = CmdUndo ( );
|
||||
else if (command == "untag") status = CmdUntag (cli, rules, database );
|
||||
else if (command == "week") status = CmdChartWeek (cli, rules, database );
|
||||
else status = CmdReport (cli, rules, database, extensions);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue