mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-07-07 20:06:36 +02:00
Parser
- When a filter contains "uuid:<value>" this is matched using the partial match operator, which will allow use of abbreviated UUIDs.
This commit is contained in:
parent
398bc9c824
commit
f9d534939d
1 changed files with 2 additions and 1 deletions
|
@ -821,7 +821,8 @@ void Parser::findAttribute ()
|
|||
branch->tag ("OP");
|
||||
|
||||
// All 'project' attributes are partial matches.
|
||||
if (canonical == "project")
|
||||
if (canonical == "project" ||
|
||||
canonical == "uuid")
|
||||
branch->attribute ("raw", "=");
|
||||
else
|
||||
branch->attribute ("raw", "==");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue