From 524c36a014dd7c677967c9ba6ebaa6444c51cdb5 Mon Sep 17 00:00:00 2001 From: Daniel Borchmann Date: Sun, 25 Apr 2021 10:32:30 +0200 Subject: [PATCH] Add list for missed appointments When a DATE action is missed, it will not show up in the agenda anymore. So let's track them individually. --- init.el | 3 +++ 1 file changed, 3 insertions(+) diff --git a/init.el b/init.el index 20b4b0e..1e06e87 100644 --- a/init.el +++ b/init.el @@ -1077,6 +1077,9 @@ (org-agenda-todo-ignore-scheduled t) (org-agenda-sorting-strategy '(priority-down time-up category-keep)))) + (tags-todo "DATE" + ((org-agenda-overriding-header "Missed appointments (DATEs with timestamp in the past)") + (org-agenda-todo-ignore-timestamp 0))) (stuck "" ((org-agenda-overriding-header "Stuck Tasks"))) (tags-todo "HOLD"