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
No known key found for this signature in database
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")))
org-tag-alist
'((:startgroup . nil)
'((:startgroup)
("WORK" . ?w)
("HOME" . ?h)
("FUN" . ?f)
("UNTAGGED" . ?u)
(:endgroup . nil)
(:endgroup)
("NOTE" . ?n)
(:startgroup)
("PERIODIC" . ?p)
("REGULAR" . ?r)
("NOP" . ?o)
("TOPIC" . ?t)
("TEMPLATE" . ?l))
("TEMPLATE" . ?l)
("GOAL" . ?g)
(:endgroup))
org-tags-exclude-from-inheritance
'("NOP" "TOPIC")
'("NOP" "TOPIC" "GOAL")
org-fast-tag-selection-single-key 'expert)