mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-09-08 15:20:36 +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
|
@ -39,8 +39,18 @@ ColumnString::ColumnString ()
|
|||
{
|
||||
_name = "string";
|
||||
_type = "string";
|
||||
_style = "default";
|
||||
_style = "left";
|
||||
_label = "";
|
||||
|
||||
_styles.push_back ("left");
|
||||
_styles.push_back ("right");
|
||||
_styles.push_back ("left_fixed");
|
||||
_styles.push_back ("right_fixed");
|
||||
|
||||
_styles.push_back ("Hello (wrapped) ");
|
||||
_styles.push_back (" Hello (wrapped)");
|
||||
_styles.push_back ("Hello (no-wrap) ");
|
||||
_styles.push_back (" Hello (no-wrap)");
|
||||
}
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue