Officially introduct GOAL tag

Make it disjoint from TOPIC, NOP, PERIODIC, and TEMPLATE, as those things all
mean disjoint things.
This commit is contained in:
Daniel - 2022-06-28 20:25:47 +02:00
parent f193d6415f
commit 74e37b928c
Signed by: dbo
GPG Key ID: 784AA8DF0CCDF625
1 changed files with 7 additions and 5 deletions

12
init.el
View File

@ -828,21 +828,23 @@
("" ("HOLD") ("WAIT") ("DATE") ("READ"))) ("" ("HOLD") ("WAIT") ("DATE") ("READ")))
org-tag-alist org-tag-alist
'((:startgroup . nil) '((:startgroup)
("WORK" . ?w) ("WORK" . ?w)
("HOME" . ?h) ("HOME" . ?h)
("FUN" . ?f) ("FUN" . ?f)
("UNTAGGED" . ?u) ("UNTAGGED" . ?u)
(:endgroup . nil) (:endgroup)
("NOTE" . ?n) ("NOTE" . ?n)
(:startgroup)
("PERIODIC" . ?p) ("PERIODIC" . ?p)
("REGULAR" . ?r)
("NOP" . ?o) ("NOP" . ?o)
("TOPIC" . ?t) ("TOPIC" . ?t)
("TEMPLATE" . ?l)) ("TEMPLATE" . ?l)
("GOAL" . ?g)
(:endgroup))
org-tags-exclude-from-inheritance org-tags-exclude-from-inheritance
'("NOP" "TOPIC") '("NOP" "TOPIC" "GOAL")
org-fast-tag-selection-single-key 'expert) org-fast-tag-selection-single-key 'expert)