From 456cc6107b8b19fe5557ab2b1f384bd2c509c893 Mon Sep 17 00:00:00 2001 From: Daniel Borchmann Date: Fri, 27 Aug 2021 17:22:26 +0200 Subject: [PATCH] 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). --- init.el | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/init.el b/init.el index be9f529..6dccca4 100644 --- a/init.el +++ b/init.el @@ -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")))))