From e1e7da0c816dd60515c01b8c6049c4261a128254 Mon Sep 17 00:00:00 2001 From: Daniel Borchmann Date: Wed, 8 Jun 2022 17:01:10 +0200 Subject: [PATCH] Exclude NOTE entries tagged with NOP from project note overview MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit NOP means „not a project“, so excluding them is plausible per se. NOP entries will also be reviewed less frequently (usually once per month) so a combination of NOTE and NOP would allow to have „abstract“ project notes whose main purpose is to collect backlinks and thus group proper note entries (example: topics relevant for release planning). --- init.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/init.el b/init.el index ecb57ef..978ff09 100644 --- a/init.el +++ b/init.el @@ -1136,8 +1136,8 @@ (org-agenda-todo-ignore-scheduled 'future))) (tags "TODO=\"\"-TAGS={NOP\\|TOPIC}-PERIODIC-NOTE-DATE-SOMEWHEN-HOLD-TEMPLATE-SCHEDULED>=\"<+1d>\"" ((org-agenda-overriding-header "Open Tasks"))) - (tags "TAGS={NOTE}-TODO={CANC\\|DONE}-HOLD" - ((org-agenda-overriding-header "Project Notes (items explicitly tagged with NOTE)"))) + (tags "TAGS={NOTE}-TODO={CANC\\|DONE}-HOLD-NOP" + ((org-agenda-overriding-header "Project Notes (items explicitly tagged with NOTE but not NOP)"))) (tags "TODO=\"\"+TAGS={TOPIC}-SCHEDULED>=\"<+1d>\"" ((org-agenda-overriding-header "Topics"))) (tags "TAGS={PERIODIC}-TODO={DONE\\|CANC}-HOLD-SCHEDULED>=\"<+1d>\""