mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-07-07 20:06:36 +02:00
Introduced longversion configuration variable.
- When off just a short version msg is displayed. - When on the current values for the configuration variables are also displayed. Default is on.
This commit is contained in:
parent
b31cc639a4
commit
ed7a9273d0
1 changed files with 33 additions and 28 deletions
|
@ -336,37 +336,41 @@ std::string handleVersion ()
|
||||||
"and lively discussion. New releases containing fixes and enhancements "
|
"and lively discussion. New releases containing fixes and enhancements "
|
||||||
"are made frequently.");
|
"are made frequently.");
|
||||||
|
|
||||||
// Create a table for output.
|
|
||||||
Table table;
|
|
||||||
table.setTableWidth (width);
|
|
||||||
table.setDateFormat (context.config.get ("dateformat", "m/d/Y"));
|
|
||||||
table.addColumn ("Config variable");
|
|
||||||
table.addColumn ("Value");
|
|
||||||
|
|
||||||
if (context.config.get ("color", true) || context.config.get (std::string ("_forcecolor"), false))
|
|
||||||
{
|
|
||||||
table.setColumnUnderline (0);
|
|
||||||
table.setColumnUnderline (1);
|
|
||||||
}
|
|
||||||
else
|
|
||||||
table.setTableDashedUnderline ();
|
|
||||||
|
|
||||||
table.setColumnWidth (0, Table::minimum);
|
|
||||||
table.setColumnWidth (1, Table::flexible);
|
|
||||||
table.setColumnJustification (0, Table::left);
|
|
||||||
table.setColumnJustification (1, Table::left);
|
|
||||||
table.sortOn (0, Table::ascendingCharacter);
|
|
||||||
|
|
||||||
std::vector <std::string> all;
|
std::vector <std::string> all;
|
||||||
context.config.all (all);
|
context.config.all (all);
|
||||||
foreach (i, all)
|
|
||||||
|
// Create a table for output.
|
||||||
|
Table table;
|
||||||
|
if (context.config.get ("longversion", true))
|
||||||
{
|
{
|
||||||
std::string value = context.config.get (*i);
|
table.setTableWidth (width);
|
||||||
if (value != "")
|
table.setDateFormat (context.config.get ("dateformat", "m/d/Y"));
|
||||||
|
table.addColumn ("Config variable");
|
||||||
|
table.addColumn ("Value");
|
||||||
|
|
||||||
|
if (context.config.get ("color", true) || context.config.get (std::string ("_forcecolor"), false))
|
||||||
{
|
{
|
||||||
int row = table.addRow ();
|
table.setColumnUnderline (0);
|
||||||
table.addCell (row, 0, *i);
|
table.setColumnUnderline (1);
|
||||||
table.addCell (row, 1, value);
|
}
|
||||||
|
else
|
||||||
|
table.setTableDashedUnderline ();
|
||||||
|
|
||||||
|
table.setColumnWidth (0, Table::minimum);
|
||||||
|
table.setColumnWidth (1, Table::flexible);
|
||||||
|
table.setColumnJustification (0, Table::left);
|
||||||
|
table.setColumnJustification (1, Table::left);
|
||||||
|
table.sortOn (0, Table::ascendingCharacter);
|
||||||
|
|
||||||
|
foreach (i, all)
|
||||||
|
{
|
||||||
|
std::string value = context.config.get (*i);
|
||||||
|
if (value != "")
|
||||||
|
{
|
||||||
|
int row = table.addRow ();
|
||||||
|
table.addCell (row, 0, *i);
|
||||||
|
table.addCell (row, 1, value);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -382,7 +386,7 @@ std::string handleVersion ()
|
||||||
<< std::endl
|
<< std::endl
|
||||||
<< disclaimer.render ()
|
<< disclaimer.render ()
|
||||||
<< std::endl
|
<< std::endl
|
||||||
<< table.render ()
|
<< (context.config.get ("longversion", true) ? table.render () : "")
|
||||||
<< link.render ()
|
<< link.render ()
|
||||||
<< std::endl;
|
<< std::endl;
|
||||||
|
|
||||||
|
@ -397,6 +401,7 @@ std::string handleVersion ()
|
||||||
"defaultwidth displayweeknumber due echo.command locale locking "
|
"defaultwidth displayweeknumber due echo.command locale locking "
|
||||||
"monthsperline nag next project shadow.command shadow.file shadow.notify "
|
"monthsperline nag next project shadow.command shadow.file shadow.notify "
|
||||||
"weekstart editor import.synonym.id import.synonym.uuid "
|
"weekstart editor import.synonym.id import.synonym.uuid "
|
||||||
|
"longversion "
|
||||||
#ifdef FEATURE_SHELL
|
#ifdef FEATURE_SHELL
|
||||||
"shell.prompt "
|
"shell.prompt "
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue