summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Cunningham <cc@localhost>2024-06-14 16:51:38 -0700
committerChristian Cunningham <cc@localhost>2024-06-14 16:51:38 -0700
commitd9487cd10a8dcd265efd56a5e8dad740c4c082df (patch)
tree56c2ca3ceebfa169776afbf411064fa413626217
parent4c32a084310aef0fbf5065db86ce919dd53a5129 (diff)
Break Apart Todo Query
Evidently the font face gets stripped if you use more than 3 TODO headings in one todo query
-rw-r--r--elchemy-dashboard.el2
1 files changed, 1 insertions, 1 deletions
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")