mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-07-07 20:06:36 +02:00
CLI
- Standardized use of 'ATT' and 'ATTR' tags to 'ATTRIBUTE'.
This commit is contained in:
parent
b7efb753b5
commit
5daf673387
1 changed files with 6 additions and 6 deletions
12
src/CLI.cpp
12
src/CLI.cpp
|
@ -625,7 +625,7 @@ void CLI::desugarTags ()
|
|||
tag.find (' ') == std::string::npos)
|
||||
{
|
||||
A left ("argTag", "tags");
|
||||
left.tag ("ATT");
|
||||
left.tag ("ATTRIBUTE");
|
||||
left.tag ("FILTER");
|
||||
reconstructed.push_back (left);
|
||||
|
||||
|
@ -929,7 +929,7 @@ void CLI::desugarPatterns ()
|
|||
pattern.length () > 0)
|
||||
{
|
||||
A lhs ("argPattern", "description");
|
||||
lhs.tag ("ATT");
|
||||
lhs.tag ("ATTRIBUTE");
|
||||
lhs.tag ("FILTER");
|
||||
reconstructed.push_back (lhs);
|
||||
|
||||
|
@ -1071,7 +1071,7 @@ void CLI::desugarIDs ()
|
|||
{
|
||||
A id ("argSeq", "id");
|
||||
id.tag ("FILTER");
|
||||
id.tag ("ATTR");
|
||||
id.tag ("ATTRIBUTE");
|
||||
reconstructed.push_back (id);
|
||||
|
||||
A equal ("argSeq", "==");
|
||||
|
@ -1093,7 +1093,7 @@ void CLI::desugarIDs ()
|
|||
|
||||
A startId ("argSeq", "id");
|
||||
startId.tag ("FILTER");
|
||||
startId.tag ("ATTR");
|
||||
startId.tag ("ATTRIBUTE");
|
||||
reconstructed.push_back (startId);
|
||||
|
||||
A gte ("argSeq", ">=");
|
||||
|
@ -1113,7 +1113,7 @@ void CLI::desugarIDs ()
|
|||
|
||||
A endId ("argSeq", "id");
|
||||
endId.tag ("FILTER");
|
||||
endId.tag ("ATTR");
|
||||
endId.tag ("ATTRIBUTE");
|
||||
reconstructed.push_back (endId);
|
||||
|
||||
A lte ("argSeq", "<=");
|
||||
|
@ -1204,7 +1204,7 @@ void CLI::desugarUUIDs ()
|
|||
|
||||
A uuid ("argSeq", "uuid");
|
||||
uuid.tag ("FILTER");
|
||||
uuid.tag ("ATTR");
|
||||
uuid.tag ("ATTRIBUTE");
|
||||
reconstructed.push_back (uuid);
|
||||
|
||||
A equal ("argSeq", "=");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue