From d2f034e7d2f4def8b90ff57219ba6d51081dba65 Mon Sep 17 00:00:00 2001 From: Daniel Borchmann Date: Mon, 15 Aug 2022 18:41:18 +0200 Subject: [PATCH] Introduce new REFINE keyword This is to mark items that are not yet actionable but are supposed to become actionable. The intended action on those items is then to refine those (or cancel them). --- init.el | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/init.el b/init.el index 578ba78..67fb913 100644 --- a/init.el +++ b/init.el @@ -820,7 +820,7 @@ ;; Keywords and Tags (setq org-todo-keywords - '((sequence "TODO(t)" "CONT(n!)" "|" "DONE(d@)") + '((sequence "TODO(t)" "CONT(n!)" "REFINE(f!)" "|" "DONE(d@)") (sequence "GOTO(g)" "ATTN(a)" "|" "DONE(d@)") (sequence "READ(r)" "CONT(n!)" "|" "DONE(d@)") (sequence "DELG(e@/!)" "WAIT(w@/!)" "HOLD(h@/!)" @@ -834,7 +834,8 @@ ("TODO" ("HOLD") ("WAIT") ("DATE") ("READ")) ("READ" ("READ" . t) ("DATE") ("HOLD") ("WAIT")) ("GOTO" ("DATE" . t) ("READ") ("HOLD") ("WAIT")) - ("CONT" ("DATE") ("HOLD") ("WAIT")) + ("CONT" ("DATE") ("HOLD") ("WAIT") ("READ")) + ("REFINE" ("DATE") ("HOLD") ("WAIT") ("READ")) ("ATTN" ("DATE" . t) ("READ") ("HOLD") ("WAIT")) ("" ("HOLD") ("WAIT") ("DATE") ("READ"))) @@ -869,6 +870,7 @@ ("ATTN" :foreground "DeepSkyBlue" :weight normal) ("DONE" :foreground "forest green" :weight normal) ("DELG" :foreground "dark orange" :weight normal) + ("REFINE" :foreground "tomato" :weight normal) ("WAIT" :foreground "orange" :weight normal) ("HOLD" :foreground "magenta" :weight normal) ("CANC" :foreground "lime green" :weight normal)