mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-08-28 13:37:20 +02:00
Virtual Tags
- Added virtual tag TODAY as a synonym for DUETODAY.
This commit is contained in:
parent
2f10e8d2e2
commit
9d1ae99656
1 changed files with 1 additions and 1 deletions
|
@ -945,9 +945,9 @@ bool Task::hasTag (const std::string& tag) const
|
||||||
if (tag == "BLOCKING") return is_blocking;
|
if (tag == "BLOCKING") return is_blocking;
|
||||||
if (tag == "DUE") return is_due ();
|
if (tag == "DUE") return is_due ();
|
||||||
if (tag == "DUETODAY") return is_duetoday ();
|
if (tag == "DUETODAY") return is_duetoday ();
|
||||||
|
if (tag == "TODAY") return is_duetoday ();
|
||||||
if (tag == "OVERDUE") return is_overdue ();
|
if (tag == "OVERDUE") return is_overdue ();
|
||||||
/*
|
/*
|
||||||
TODO TODAY - due today
|
|
||||||
TODO YESTERDAY - due yesterday
|
TODO YESTERDAY - due yesterday
|
||||||
TODO TOMORROW - due tomorrow
|
TODO TOMORROW - due tomorrow
|
||||||
TODO WEEK - due this week
|
TODO WEEK - due this week
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue