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

Method CmdConfig

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

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

Source from the content-addressed store, hash-verified

38
39////////////////////////////////////////////////////////////////////////////////
40CmdConfig::CmdConfig() {
41 _keyword = "config";
42 _usage = "task config [name [value | '']]";
43 _description = "Change settings in the task configuration";
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::config;
53}
54
55////////////////////////////////////////////////////////////////////////////////
56bool CmdConfig::setConfigVariable(const std::string& name, const std::string& value,

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected