Move refile overview to unspecified agenda

Things to refile should not be shown on the main agenda, as this view is only
meant to show open tasks.  Indeed, if to-be-refiled items are already done, they
should not be here for exactly that reason; and if they are not done yet, then
they will show up in the Next Action list anyway.

Bringing items to their (supposedly) correct location is not part of doing the
item, it's part of cleaning up (e.g., while doing the weekly review).

Emptying the refile file should still be done regularly, though, i.e., every
day (via a daily review) or weekly (in the weekly review).
This commit is contained in:
Daniel - 2021-08-27 17:22:26 +02:00
parent a1f0acfd87
commit 456cc6107b
No known key found for this signature in database
GPG Key ID: 1C7071A75BB72D64
1 changed files with 3 additions and 3 deletions

View File

@ -1067,9 +1067,6 @@
((org-agenda-overriding-header "Deadlines")
(org-agenda-sorting-strategy '(deadline-up priority-down))
(org-deadline-warning-days 30)))
(tags "REFILE"
((org-agenda-files (list db/org-default-refile-file))
(org-agenda-overriding-header "Things to refile (make it empty!)")))
(tags-todo "-HOLD-SOMEWHEN-DATE-WAIT-READ/-DONE"
((org-agenda-overriding-header "Next Actions List (unscheduled actions)")
(org-tags-match-list-sublevels t)
@ -1095,6 +1092,9 @@
(tags-todo "DATE"
((org-agenda-overriding-header "Missed appointments (DATEs with timestamp in the past)")
(org-agenda-todo-ignore-timestamp 0)))
(tags "REFILE"
((org-agenda-files (list db/org-default-refile-file))
(org-agenda-overriding-header "Things to refile (make it empty!)")))
(tags-todo "HOLD"
((org-agenda-overriding-header "Tasks on Hold")))))