mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-08-30 02:17:21 +02:00
Enhancement - #307 show command
- introduced new show command to display configuration settings - config command is used to just set config values - modified documentation - modified some unit tests calling 'task config' to 'task show'
This commit is contained in:
parent
f1368d6ac6
commit
51e5a18384
12 changed files with 156 additions and 125 deletions
|
@ -206,9 +206,13 @@ int shortUsage (std::string &outs)
|
|||
table.addCell (row, 1, "task version");
|
||||
table.addCell (row, 2, "Shows the task version number.");
|
||||
|
||||
row = table.addRow ();
|
||||
table.addCell (row, 1, "task show [section-name]");
|
||||
table.addCell (row, 2, "Shows the task entire configuration or a specific section.");
|
||||
|
||||
row = table.addRow ();
|
||||
table.addCell (row, 1, "task config [name [value | '']]");
|
||||
table.addCell (row, 2, "Shows the task configuration, or can add, modify and remove settings.");
|
||||
table.addCell (row, 2, "Add, modify and remove settings in the task configuration.");
|
||||
|
||||
row = table.addRow ();
|
||||
table.addCell (row, 1, "task help");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue