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

Method CmdModify

src/commands/CmdModify.cpp:45–58  ·  view source on GitHub ↗

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

Source from the content-addressed store, hash-verified

43
44////////////////////////////////////////////////////////////////////////////////
45CmdModify::CmdModify() {
46 _keyword = "modify";
47 _usage = "task <filter> modify <mods>";
48 _description = "Modifies the existing task with provided arguments.";
49 _read_only = false;
50 _displays_id = false;
51 _needs_gc = false;
52 _needs_recur_update = false;
53 _uses_context = false;
54 _accepts_filter = true;
55 _accepts_modifications = true;
56 _accepts_miscellaneous = false;
57 _category = Command::Category::operation;
58}
59
60////////////////////////////////////////////////////////////////////////////////
61int CmdModify::execute(std::string&) {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected