mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-06-26 10:54:26 +02:00
Feature #499
- added extra line of output when doing bulk done changes.
This commit is contained in:
parent
1f8ae07b8e
commit
0e1d12f5b1
2 changed files with 4 additions and 0 deletions
|
@ -33,6 +33,8 @@
|
|||
report.
|
||||
+ Added feature #481, allowing for user control of the color rule order
|
||||
of precedence via the 'rule.precedence.color' configuration variable.
|
||||
+ Added feature #499, giving an extra line in the message output when
|
||||
doing bulk done changes (thanks to T. Charles Yun).
|
||||
+ New 'depends' column for custom reports.
|
||||
+ New 'blocked' report for showing blocked tasks.
|
||||
+ New 'unblocked' report for showing tasks that are not blocked.
|
||||
|
|
|
@ -1592,6 +1592,8 @@ int handleDone (std::string &outs)
|
|||
<< " as done.\n";
|
||||
|
||||
outs = out.str ();
|
||||
if (count > context.config.getInteger ("bulk"))
|
||||
outs = "\n" + outs;
|
||||
context.hooks.trigger ("post-done-command");
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue