mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-09-04 10:37:19 +02:00
args
- Entered a complete and current entity set, for testing.
This commit is contained in:
parent
1b19414178
commit
bc1c7a6695
1 changed files with 95 additions and 80 deletions
175
src/args.cpp
175
src/args.cpp
|
@ -43,75 +43,90 @@ int main (int argc, const char** argv)
|
|||
Alias alias;
|
||||
alias.resolve (parser.tree ());
|
||||
|
||||
// Reports.
|
||||
parser.entity ("report", "active");
|
||||
parser.entity ("report", "all");
|
||||
parser.entity ("report", "blocked");
|
||||
parser.entity ("report", "blocking");
|
||||
parser.entity ("report", "burndown.daily");
|
||||
parser.entity ("report", "burndown.monthly");
|
||||
parser.entity ("report", "burndown.weekly");
|
||||
parser.entity ("report", "completed");
|
||||
parser.entity ("report", "ghistory.annual");
|
||||
parser.entity ("report", "ghistory.monthly");
|
||||
parser.entity ("report", "history.annual");
|
||||
parser.entity ("report", "history.monthly");
|
||||
parser.entity ("report", "information");
|
||||
parser.entity ("report", "list");
|
||||
parser.entity ("report", "long");
|
||||
parser.entity ("report", "ls");
|
||||
parser.entity ("report", "minimal");
|
||||
parser.entity ("report", "newest");
|
||||
parser.entity ("report", "next");
|
||||
parser.entity ("report", "oldest");
|
||||
parser.entity ("report", "overdue");
|
||||
parser.entity ("report", "projects");
|
||||
parser.entity ("report", "ready");
|
||||
parser.entity ("report", "recurring");
|
||||
parser.entity ("report", "summary");
|
||||
parser.entity ("report", "tags");
|
||||
parser.entity ("report", "unblocked");
|
||||
parser.entity ("report", "waiting");
|
||||
|
||||
// Read-only commands.
|
||||
parser.entity ("readcmd", "export");
|
||||
parser.entity ("readcmd", "info");
|
||||
parser.entity ("readcmd", "list");
|
||||
parser.entity ("readcmd", "next");
|
||||
parser.entity ("readcmd", "projects");
|
||||
parser.entity ("cmd", "active"); parser.entity ("readcmd", "active");
|
||||
parser.entity ("cmd", "all"); parser.entity ("readcmd", "all");
|
||||
parser.entity ("cmd", "blocked"); parser.entity ("readcmd", "blocked");
|
||||
parser.entity ("cmd", "blocking"); parser.entity ("readcmd", "blocking");
|
||||
parser.entity ("cmd", "burndown.daily"); parser.entity ("readcmd", "burndown.daily");
|
||||
parser.entity ("cmd", "burndown.monthly"); parser.entity ("readcmd", "burndown.monthly");
|
||||
parser.entity ("cmd", "burndown.weekly"); parser.entity ("readcmd", "burndown.weekly");
|
||||
parser.entity ("cmd", "calc"); parser.entity ("readcmd", "calc");
|
||||
parser.entity ("cmd", "calendar"); parser.entity ("readcmd", "calendar");
|
||||
parser.entity ("cmd", "colors"); parser.entity ("readcmd", "colors");
|
||||
parser.entity ("cmd", "columns"); parser.entity ("readcmd", "columns");
|
||||
parser.entity ("cmd", "completed"); parser.entity ("readcmd", "completed");
|
||||
parser.entity ("cmd", "config"); parser.entity ("readcmd", "config");
|
||||
parser.entity ("cmd", "count"); parser.entity ("readcmd", "count");
|
||||
parser.entity ("cmd", "diagnostics"); parser.entity ("readcmd", "diagnostics");
|
||||
parser.entity ("cmd", "execute"); parser.entity ("readcmd", "execute");
|
||||
parser.entity ("cmd", "export"); parser.entity ("readcmd", "export");
|
||||
parser.entity ("cmd", "ghistory.annual"); parser.entity ("readcmd", "ghistory.annual");
|
||||
parser.entity ("cmd", "ghistory.monthly"); parser.entity ("readcmd", "ghistory.monthly");
|
||||
parser.entity ("cmd", "help"); parser.entity ("readcmd", "help");
|
||||
parser.entity ("cmd", "history.annual"); parser.entity ("readcmd", "history.annual");
|
||||
parser.entity ("cmd", "history.monthly"); parser.entity ("readcmd", "history.monthly");
|
||||
parser.entity ("cmd", "ids"); parser.entity ("readcmd", "ids");
|
||||
parser.entity ("cmd", "information"); parser.entity ("readcmd", "information");
|
||||
parser.entity ("cmd", "list"); parser.entity ("readcmd", "list");
|
||||
parser.entity ("cmd", "logo"); parser.entity ("readcmd", "logo");
|
||||
parser.entity ("cmd", "long"); parser.entity ("readcmd", "long");
|
||||
parser.entity ("cmd", "ls"); parser.entity ("readcmd", "ls");
|
||||
parser.entity ("cmd", "minimal"); parser.entity ("readcmd", "minimal");
|
||||
parser.entity ("cmd", "newest"); parser.entity ("readcmd", "newest");
|
||||
parser.entity ("cmd", "next"); parser.entity ("readcmd", "next");
|
||||
parser.entity ("cmd", "oldest"); parser.entity ("readcmd", "oldest");
|
||||
parser.entity ("cmd", "overdue"); parser.entity ("readcmd", "overdue");
|
||||
parser.entity ("cmd", "projects"); parser.entity ("readcmd", "projects");
|
||||
parser.entity ("cmd", "ready"); parser.entity ("readcmd", "ready");
|
||||
parser.entity ("cmd", "recurring"); parser.entity ("readcmd", "recurring");
|
||||
parser.entity ("cmd", "reports"); parser.entity ("readcmd", "reports");
|
||||
parser.entity ("cmd", "show"); parser.entity ("readcmd", "show");
|
||||
parser.entity ("cmd", "stats"); parser.entity ("readcmd", "stats");
|
||||
parser.entity ("cmd", "summary"); parser.entity ("readcmd", "summary");
|
||||
parser.entity ("cmd", "tags"); parser.entity ("readcmd", "tags");
|
||||
parser.entity ("cmd", "timesheet"); parser.entity ("readcmd", "timesheet");
|
||||
parser.entity ("cmd", "udas"); parser.entity ("readcmd", "udas");
|
||||
parser.entity ("cmd", "unblocked"); parser.entity ("readcmd", "unblocked");
|
||||
parser.entity ("cmd", "uuids"); parser.entity ("readcmd", "uuids");
|
||||
parser.entity ("cmd", "version"); parser.entity ("readcmd", "version");
|
||||
parser.entity ("cmd", "waiting"); parser.entity ("readcmd", "waiting");
|
||||
|
||||
// Write commands.
|
||||
parser.entity ("writecmd", "add");
|
||||
parser.entity ("writecmd", "annotate");
|
||||
parser.entity ("writecmd", "delete");
|
||||
parser.entity ("writecmd", "denotate");
|
||||
parser.entity ("writecmd", "done");
|
||||
parser.entity ("writecmd", "modify");
|
||||
parser.entity ("writecmd", "start");
|
||||
parser.entity ("writecmd", "stop");
|
||||
|
||||
// Special commands.
|
||||
parser.entity ("specialcmd", "calendar");
|
||||
parser.entity ("specialcmd", "edit");
|
||||
parser.entity ("writecmd", "import");
|
||||
parser.entity ("cmd", "add"); parser.entity ("writecmd", "add");
|
||||
parser.entity ("cmd", "annotate"); parser.entity ("writecmd", "annotate");
|
||||
parser.entity ("cmd", "append"); parser.entity ("writecmd", "append");
|
||||
parser.entity ("cmd", "delete"); parser.entity ("writecmd", "delete");
|
||||
parser.entity ("cmd", "denotate"); parser.entity ("writecmd", "denotate");
|
||||
parser.entity ("cmd", "done"); parser.entity ("writecmd", "done");
|
||||
parser.entity ("cmd", "duplicate"); parser.entity ("writecmd", "duplicate");
|
||||
parser.entity ("cmd", "edit"); parser.entity ("writecmd", "edit");
|
||||
parser.entity ("cmd", "import"); parser.entity ("writecmd", "import");
|
||||
parser.entity ("cmd", "log"); parser.entity ("writecmd", "log");
|
||||
parser.entity ("cmd", "modify"); parser.entity ("writecmd", "modify");
|
||||
parser.entity ("cmd", "prepend"); parser.entity ("writecmd", "prepend");
|
||||
parser.entity ("cmd", "start"); parser.entity ("writecmd", "start");
|
||||
parser.entity ("cmd", "stop"); parser.entity ("writecmd", "stop");
|
||||
parser.entity ("cmd", "synchronize"); parser.entity ("writecmd", "synchronize");
|
||||
parser.entity ("cmd", "undo"); parser.entity ("writecmd", "undo");
|
||||
|
||||
// Helper commands.
|
||||
parser.entity ("helper", "_aliases");
|
||||
parser.entity ("helper", "_columns");
|
||||
parser.entity ("helper", "_commands");
|
||||
parser.entity ("helper", "_config");
|
||||
parser.entity ("helper", "_get");
|
||||
parser.entity ("helper", "_ids");
|
||||
parser.entity ("helper", "_projects");
|
||||
parser.entity ("helper", "_show");
|
||||
parser.entity ("helper", "_tags");
|
||||
parser.entity ("helper", "_udas");
|
||||
parser.entity ("helper", "_urgency");
|
||||
parser.entity ("helper", "_uuids");
|
||||
parser.entity ("helper", "_version");
|
||||
parser.entity ("helper", "_zshcommands");
|
||||
parser.entity ("helper", "_zshids");
|
||||
parser.entity ("helper", "_zshuuids");
|
||||
parser.entity ("cmd", "_aliases"); parser.entity ("helper", "_aliases");
|
||||
parser.entity ("cmd", "_columns"); parser.entity ("helper", "_columns");
|
||||
parser.entity ("cmd", "_commands"); parser.entity ("helper", "_commands");
|
||||
parser.entity ("cmd", "_config"); parser.entity ("helper", "_config");
|
||||
parser.entity ("cmd", "_get"); parser.entity ("helper", "_get");
|
||||
parser.entity ("cmd", "_ids"); parser.entity ("helper", "_ids");
|
||||
parser.entity ("cmd", "_projects"); parser.entity ("helper", "_projects");
|
||||
parser.entity ("cmd", "_show"); parser.entity ("helper", "_show");
|
||||
parser.entity ("cmd", "_tags"); parser.entity ("helper", "_tags");
|
||||
parser.entity ("cmd", "_udas"); parser.entity ("helper", "_udas");
|
||||
parser.entity ("cmd", "_urgency"); parser.entity ("helper", "_urgency");
|
||||
parser.entity ("cmd", "_uuids"); parser.entity ("helper", "_uuids");
|
||||
parser.entity ("cmd", "_version"); parser.entity ("helper", "_version");
|
||||
parser.entity ("cmd", "_zshcommands"); parser.entity ("helper", "_zshcommands");
|
||||
parser.entity ("cmd", "_zshids"); parser.entity ("helper", "_zshids");
|
||||
parser.entity ("cmd", "_zshuuids"); parser.entity ("helper", "_zshuuids");
|
||||
|
||||
// Attributes (columns).
|
||||
parser.entity ("attribute", "depends");
|
||||
|
@ -144,27 +159,27 @@ int main (int argc, const char** argv)
|
|||
parser.entity ("uda", "duration");
|
||||
|
||||
// Modifiers.
|
||||
parser.entity ("modifier", "before");
|
||||
parser.entity ("modifier", "under");
|
||||
parser.entity ("modifier", "below");
|
||||
parser.entity ("modifier", "after");
|
||||
parser.entity ("modifier", "over");
|
||||
parser.entity ("modifier", "above");
|
||||
parser.entity ("modifier", "none");
|
||||
parser.entity ("modifier", "after");
|
||||
parser.entity ("modifier", "any");
|
||||
parser.entity ("modifier", "is");
|
||||
parser.entity ("modifier", "equals");
|
||||
parser.entity ("modifier", "isnt");
|
||||
parser.entity ("modifier", "not");
|
||||
parser.entity ("modifier", "has");
|
||||
parser.entity ("modifier", "before");
|
||||
parser.entity ("modifier", "below");
|
||||
parser.entity ("modifier", "contains");
|
||||
parser.entity ("modifier", "hasnt");
|
||||
parser.entity ("modifier", "startswith");
|
||||
parser.entity ("modifier", "left");
|
||||
parser.entity ("modifier", "endswith");
|
||||
parser.entity ("modifier", "right");
|
||||
parser.entity ("modifier", "word");
|
||||
parser.entity ("modifier", "equals");
|
||||
parser.entity ("modifier", "has");
|
||||
parser.entity ("modifier", "hasnt");
|
||||
parser.entity ("modifier", "is");
|
||||
parser.entity ("modifier", "isnt");
|
||||
parser.entity ("modifier", "left");
|
||||
parser.entity ("modifier", "none");
|
||||
parser.entity ("modifier", "not");
|
||||
parser.entity ("modifier", "noword");
|
||||
parser.entity ("modifier", "over");
|
||||
parser.entity ("modifier", "right");
|
||||
parser.entity ("modifier", "startswith");
|
||||
parser.entity ("modifier", "under");
|
||||
parser.entity ("modifier", "word");
|
||||
|
||||
// Operators.
|
||||
parser.entity ("operator", "^");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue