Do not show scheduled items in WIP or NEXT list

When things are scheduled, they are shown in the time grid portion of the
agenda.  When they are scheduled in the future, they will not show up until that
date is due; when they are scheduled in the past or present, they are shown on
the time grid directly.  Both situations are sufficient, and it's thus not
necessary to show scheduled items in other lists as well.
This commit is contained in:
Daniel - 2022-02-23 16:51:45 +01:00
parent 695b3396dd
commit 5234ddd0a3
No known key found for this signature in database
GPG Key ID: 1C7071A75BB72D64
1 changed files with 3 additions and 3 deletions

View File

@ -1075,11 +1075,11 @@
(org-agenda-sorting-strategy '(deadline-up priority-down))
(org-deadline-warning-days 30)))
(tags-todo "TODO={CONT\\|ATTN}"
((org-agenda-overriding-header "WIP List (TODO={CONT\\\\|ATTN}, not scheduled in the future)")
((org-agenda-overriding-header "WIP List (TODO={CONT\\\\|ATTN}, not scheduled)")
(org-agenda-sorting-strategy '(priority-down category-up))
(org-agenda-todo-ignore-scheduled 'future)))
(org-agenda-todo-ignore-scheduled t)))
(tags-todo "TODO<>\"CONT\"-HOLD-SOMEWHEN-DATE-WAIT/-DONE"
((org-agenda-overriding-header "Next Actions List (not WIP, not scheduled in the future)")
((org-agenda-overriding-header "Next Actions List (not WIP, not scheduled)")
(org-tags-match-list-sublevels t)
(org-agenda-todo-ignore-scheduled 'future)
(org-agenda-sorting-strategy '(priority-down category-up))))))