Compare commits

..

2 Commits

Author SHA1 Message Date
ef7bd6e7b4
Remove old PHONE and MEETING keywords
Not used anymore.
2022-08-15 18:43:17 +02:00
d2f034e7d2
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).
2022-08-15 18:42:56 +02:00

13
init.el
View File

@ -820,11 +820,11 @@
;; Keywords and Tags ;; Keywords and Tags
(setq org-todo-keywords (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 "GOTO(g)" "ATTN(a)" "|" "DONE(d@)")
(sequence "READ(r)" "CONT(n!)" "|" "DONE(d@)") (sequence "READ(r)" "CONT(n!)" "|" "DONE(d@)")
(sequence "DELG(e@/!)" "WAIT(w@/!)" "HOLD(h@/!)" (sequence "DELG(e@/!)" "WAIT(w@/!)" "HOLD(h@/!)"
"|" "CANC(c@/!)" "PHONE" "MEETING")) "|" "CANC(c@/!)"))
org-todo-state-tags-triggers org-todo-state-tags-triggers
'(("WAIT" ("HOLD") ("WAIT" . t)) '(("WAIT" ("HOLD") ("WAIT" . t))
@ -834,7 +834,8 @@
("TODO" ("HOLD") ("WAIT") ("DATE") ("READ")) ("TODO" ("HOLD") ("WAIT") ("DATE") ("READ"))
("READ" ("READ" . t) ("DATE") ("HOLD") ("WAIT")) ("READ" ("READ" . t) ("DATE") ("HOLD") ("WAIT"))
("GOTO" ("DATE" . t) ("READ") ("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")) ("ATTN" ("DATE" . t) ("READ") ("HOLD") ("WAIT"))
("" ("HOLD") ("WAIT") ("DATE") ("READ"))) ("" ("HOLD") ("WAIT") ("DATE") ("READ")))
@ -869,12 +870,10 @@
("ATTN" :foreground "DeepSkyBlue" :weight normal) ("ATTN" :foreground "DeepSkyBlue" :weight normal)
("DONE" :foreground "forest green" :weight normal) ("DONE" :foreground "forest green" :weight normal)
("DELG" :foreground "dark orange" :weight normal) ("DELG" :foreground "dark orange" :weight normal)
("REFINE" :foreground "tomato" :weight normal)
("WAIT" :foreground "orange" :weight normal) ("WAIT" :foreground "orange" :weight normal)
("HOLD" :foreground "magenta" :weight normal) ("HOLD" :foreground "magenta" :weight normal)
("CANC" :foreground "lime green" :weight normal) ("CANC" :foreground "lime green" :weight normal))
("MEETING" :foreground "forest green" :weight normal)
("PHONE" :foreground "forest green" :weight normal)
("REPEAT" :foreground "indian red" :weight normal))
org-priority-faces org-priority-faces
'((?A . (:foreground "Red" :weight bold)) '((?A . (:foreground "Red" :weight bold))