From e1b4a2fc8cdaa70b26ada48e6b3276617c98b7ad Mon Sep 17 00:00:00 2001 From: Kiana Sheibani Date: Tue, 27 Feb 2024 15:31:45 -0500 Subject: [PATCH] Rework tag system --- config.org | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/config.org b/config.org index faf81c6..289774f 100644 --- a/config.org +++ b/config.org @@ -2436,7 +2436,7 @@ be overwritten. (defvar classes-tr '() "Classes that belong under the :TR: tag.") (defvar classes-online '() - "Classes that belong under the :online: tag.") + "Classes that belong under the :Online: tag.") (after! org (setq classes-mwf '(("HIST1111" . ?1)) @@ -2446,15 +2446,18 @@ be overwritten. (setq org-tag-persistent-alist `(("area" . ?A) ("goal" . ?G) ("project" . ?P) ("meta" . ?M) (:newline) - ;; Topics - ("economics" . ?e) ("polsci" . ?p) ("math" . ?m) ("history" . ?h) + + ("economics") ("polsci") ("math") ("history") (:startgrouptag) ("math") - (:grouptags) ("calculus" . ?c) ("algebra" . ?a) (:endgrouptag) + (:grouptags) ("calculus") ("algebra") (:endgrouptag) ;; Classes + (:startgrouptag) ("college") + (:grouptags) ("assign") ("notes") (:endgrouptag) + (:startgroup) ("college") - (:grouptags) ("TR") ("MWF") ("online") (:endgroup) + (:grouptags) ("TR") ("MWF") ("Online") (:endgroup) (:startgroup) ("MWF") (:grouptags) ,@classes-mwf (:endgroup)