mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-06-26 10:54:26 +02:00
Verbosity: Fix "project" info not showing
- Make "project" verbosity imply "footnote", since verbose project info is shown using footnotes. Fixes failing test in verbose.t. - Convert "verbosity" variable to std::set for increased readability.
This commit is contained in:
parent
124f1fe4c8
commit
ae692e07a6
6 changed files with 63 additions and 21 deletions
|
@ -37,6 +37,7 @@
|
|||
#include <FS.h>
|
||||
#include <CLI.h>
|
||||
#include <Timer.h>
|
||||
#include <set>
|
||||
|
||||
class Context
|
||||
{
|
||||
|
@ -95,7 +96,7 @@ public:
|
|||
bool run_gc;
|
||||
|
||||
bool verbosity_legacy;
|
||||
std::vector <std::string> verbosity;
|
||||
std::set <std::string> verbosity;
|
||||
std::vector <std::string> headers;
|
||||
std::vector <std::string> footnotes;
|
||||
std::vector <std::string> errors;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue