MCPcopy Create free account
hub / github.com/GothenburgBitFactory/taskwarrior / CmdHelp

Method CmdHelp

src/commands/CmdHelp.cpp:40–53  ·  view source on GitHub ↗

///////////////////////////////////////////////////////////////////////////

Source from the content-addressed store, hash-verified

38
39////////////////////////////////////////////////////////////////////////////////
40CmdHelp::CmdHelp() {
41 _keyword = "help";
42 _usage = "task help ['usage']";
43 _description = "Displays this usage help text";
44 _read_only = true;
45 _displays_id = false;
46 _needs_gc = false;
47 _needs_recur_update = false;
48 _uses_context = false;
49 _accepts_filter = false;
50 _accepts_modifications = false;
51 _accepts_miscellaneous = true;
52 _category = Command::Category::misc;
53}
54
55////////////////////////////////////////////////////////////////////////////////
56int CmdHelp::execute(std::string& output) {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected