mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-08-29 07:57:20 +02:00
Feature #800
- Added feature #800, adding a new command 'columns' that lists all the columns available for custom reports, and includes their formatting options (thanks to T. Charles Yun).
This commit is contained in:
parent
3a5370ddf1
commit
27a04b29f5
28 changed files with 372 additions and 64 deletions
|
@ -43,6 +43,7 @@
|
|||
#include <CmdBurndown.h>
|
||||
#include <CmdCalendar.h>
|
||||
#include <CmdColor.h>
|
||||
#include <CmdColumns.h>
|
||||
#include <CmdCommands.h>
|
||||
#include <CmdConfig.h>
|
||||
#include <CmdCount.h>
|
||||
|
@ -102,6 +103,7 @@ void Command::factory (std::map <std::string, Command*>& all)
|
|||
c = new CmdBurndownWeekly (); all[c->keyword ()] = c;
|
||||
c = new CmdCalendar (); all[c->keyword ()] = c;
|
||||
c = new CmdColor (); all[c->keyword ()] = c;
|
||||
c = new CmdColumns (); all[c->keyword ()] = c;
|
||||
c = new CmdCompletionCommands (); all[c->keyword ()] = c;
|
||||
c = new CmdCompletionConfig (); all[c->keyword ()] = c;
|
||||
c = new CmdCompletionIds (); all[c->keyword ()] = c;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue