ENH don't show metablox in archive

This commit is contained in:
Nathan Dwarshuis 2021-12-12 19:10:03 -05:00
parent 8f04e9dbfb
commit 0852c1f2c3
2 changed files with 7 additions and 1 deletions

View File

@ -3208,7 +3208,10 @@ original function being advised and ARGS are the arguments."
("A"
"Archivable Tasks and Projects"
((tags
,(nd/org-mk-match-string - org-x-tag-no-agenda - org-x-tag-refile)
,(nd/org-mk-match-string
- org-x-tag-no-agenda
- org-x-tag-refile
- org-x-tag-no-archive)
((org-agenda-overriding-header "Archive")
(org-agenda-skip-function #'org-x-archive-skip-function)
(org-agenda-sorting-strategy '(category-keep))

View File

@ -167,6 +167,9 @@
(defconst org-x-tag-no-agenda "NA"
"Tag denoting a headlines that shouldn't go in the agenda.")
(defconst org-x-tag-no-archive "NRXIV"
"Tag denoting a headlines that shouldn't go in the archive.")
(defconst org-x-tag-refile "REFILE"
"Tag denoting a headlines that are to be refiled.")