Match tasks that were closed today #862
-
Greetings, is it possible to create a custom agenda command that matches all tasks that were either closed or switched to a |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 4 replies
-
Yes, you should be able to match the org_agenda_custom_commands = {
c = {
description = 'Closed tasks',
types = {
{
type = 'tags',
match='CLOSED="<today>"' -- Can be <tomorrow>, <+2d>, <-1d>, <2025-01-19>
}
}
} |
Beta Was this translation helpful? Give feedback.
-
Another question in the same vein: I am trying to match all scheduled tasks or tasks with deadlines that are overdue. I would expect that something like this would work: {
type = "tags",
org_agenda_overriding_header = "Overdue",
match = 'DEADLINE<"<today>"|SCHEDULED<"<today>"/-DONE',
}, However, it also matches tasks that are scheduled today. |
Beta Was this translation helpful? Give feedback.
Yes, you should be able to match the
closed
date with a match filter: