mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-06-26 10:54:26 +02:00
Command: tags
- CmdTags was missing one special tag.
This commit is contained in:
parent
b018042130
commit
5a760cb1b2
1 changed files with 1 additions and 2 deletions
|
@ -105,6 +105,7 @@ int CmdTags::execute (std::string& output)
|
||||||
special = (context.color () &&
|
special = (context.color () &&
|
||||||
(i->first == "nocolor" ||
|
(i->first == "nocolor" ||
|
||||||
i->first == "nonag" ||
|
i->first == "nonag" ||
|
||||||
|
i->first == "nocal" ||
|
||||||
i->first == "next")) ? true : false;
|
i->first == "next")) ? true : false;
|
||||||
|
|
||||||
int row = view.addRow ();
|
int row = view.addRow ();
|
||||||
|
@ -185,8 +186,6 @@ int CmdCompletionTags::execute (std::string& output)
|
||||||
unique["nonag"] = 0;
|
unique["nonag"] = 0;
|
||||||
unique["nocal"] = 0;
|
unique["nocal"] = 0;
|
||||||
unique["next"] = 0;
|
unique["next"] = 0;
|
||||||
unique["stall"] = 0;
|
|
||||||
unique["someday"] = 0;
|
|
||||||
|
|
||||||
std::stringstream out;
|
std::stringstream out;
|
||||||
std::map <std::string, int>::iterator it;
|
std::map <std::string, int>::iterator it;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue