From d9487cd10a8dcd265efd56a5e8dad740c4c082df Mon Sep 17 00:00:00 2001 From: Christian Cunningham Date: Fri, 14 Jun 2024 16:51:38 -0700 Subject: Break Apart Todo Query Evidently the font face gets stripped if you use more than 3 TODO headings in one todo query --- elchemy-dashboard.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'elchemy-dashboard.el') diff --git a/elchemy-dashboard.el b/elchemy-dashboard.el index eee2808..a8b3482 100644 --- a/elchemy-dashboard.el +++ b/elchemy-dashboard.el @@ -63,7 +63,7 @@ (add-text-properties start (point) '(face (:height 1.5)))) (insert "\n") - (insert (elchemy/format-processed-agenda (mapcar 'elchemy/process-agenda-heading (org-ql-select (org-agenda-files) `(and (todo "STRT" "WAIT" "TODO" "CYCL") (ts :from today :to ,elchemy/schedule-lookahead)) :sort '(todo priority date))))) + (insert (elchemy/format-processed-agenda (mapcar 'elchemy/process-agenda-heading (org-ql-select (org-agenda-files) `(and (or (todo "STRT" "WAIT" "TODO") (todo "CYCL")) (ts :from today :to ,elchemy/schedule-lookahead)) :sort '(todo priority date))))) (insert "\n")) (let ((start (point))) (insert "Command Reference") -- cgit v1.2.1