From 747e505fda9db14098c45be324f15f6e715cd6fe Mon Sep 17 00:00:00 2001 From: Daniel Borchmann Date: Sun, 24 Oct 2021 12:56:29 +0200 Subject: [PATCH] Revert "Exclude NOTEs as refile targets" Excluding NOTEs as refile targets also excludes them as jump targets for C-u C-c C-w, which is bad. Better move all NOTEs out of the main task list into a separate notes.org or something. This reverts commit 90b6e9105148e89484680bd5d179131b1f457ece. --- site-lisp/db-org.el | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/site-lisp/db-org.el b/site-lisp/db-org.el index 04e3a6d..f4c3cf9 100644 --- a/site-lisp/db-org.el +++ b/site-lisp/db-org.el @@ -297,9 +297,7 @@ tag PERIODIC." (and ;; Exclude DONE state tasks from refile targets (from bh) (not (member (nth 2 (org-heading-components)) - org-done-keywords)) - ;; Do not refile to NOTEs, as those are meant to keep information, not tasks - (not (member "NOTE" (org-get-tags))))) + org-done-keywords)))) ;;; Reset checklists