mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-06-26 10:54:26 +02:00
Feature - urgency
- Added the urgency value to the 'info' report.
This commit is contained in:
parent
d8544181ce
commit
2c858c6988
1 changed files with 5 additions and 0 deletions
|
@ -611,6 +611,11 @@ int handleInfo (std::string &outs)
|
|||
table.addCell (row, 1, color);
|
||||
}
|
||||
|
||||
// Task::urgency
|
||||
row = table.addRow ();
|
||||
table.addCell (row, 0, "Urgency");
|
||||
table.addCell (row, 1, task->urgency ());
|
||||
|
||||
// If an alternating row color is specified, notify the table.
|
||||
if (context.config.getBoolean ("color") || context.config.getBoolean ("_forcecolor"))
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue