From 49d2ecb7ea9571d9dd735fc81dc5bb306848a407 Mon Sep 17 00:00:00 2001 From: Kiana Sheibani Date: Fri, 8 Mar 2024 18:45:05 -0500 Subject: [PATCH] Move sections of org tag alist This changes how these sections are displayed when selecting tags, as well as giving earlier tags priority in fast key assignment. --- config.org | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/config.org b/config.org index c786e92..879260e 100644 --- a/config.org +++ b/config.org @@ -2812,17 +2812,16 @@ Org mode offers a useful tag hierarchy system, configured via ~org-tag-alist~. W (setq org-tag-persistent-alist `(("area" . ?A) ("goal" . ?G) ("project" . ?P) ("meta" . ?M) - (:newline) + ;; Topics + (:startgrouptag) ("college") + (:grouptags) ("assign") ("notes") (:endgrouptag) ("economics") ("polsci") ("math") ("history") (:startgrouptag) ("math") (:grouptags) ("calculus") ("algebra") (:endgrouptag) ;; Classes - (:startgrouptag) ("college") - (:grouptags) ("assign") ("notes") (:endgrouptag) - (:startgroup) ("college") (:grouptags) ("TR") ("MWF") ("Online") (:endgroup)