From 97d45a8874b0ff38cc29bfcb34d586b664428a69 Mon Sep 17 00:00:00 2001 From: Daniel Borchmann Date: Tue, 1 Jun 2021 20:26:00 +0200 Subject: [PATCH] Ignore waiting-fors that are scheduled at any time We only ignored future items so far, but those that are scheduled today or in the past are also in our focus (i.e., our the daily agenda). So let's not show those as well. --- init.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/init.el b/init.el index c789148..c90691d 100644 --- a/init.el +++ b/init.el @@ -1082,7 +1082,7 @@ ("U" "Unsupervised (Waiting, Missed Appointments, Hold)" ((tags-todo "WAIT" ((org-agenda-overriding-header "Waiting For List") - (org-agenda-todo-ignore-scheduled 'future) + (org-agenda-todo-ignore-scheduled t) (org-agenda-sorting-strategy '(priority-down category-up)))) (tags-todo "DATE" ((org-agenda-overriding-header "Missed appointments (DATEs with timestamp in the past)")