diff options
| author | Mountain Man <43313373+MountainMan1312@users.noreply.github.com> | 2023-11-10 05:53:02 -0500 |
|---|---|---|
| committer | Mountain Man <43313373+MountainMan1312@users.noreply.github.com> | 2023-11-10 05:53:02 -0500 |
| commit | 3610bda9882a50084fc8e693622e82eae6a70859 (patch) | |
| tree | 56c8179699cdc32b39404608c7fc64bc670b339c | |
| parent | Start `auto-dim-other-buffers-mode` automatically after Emacs starts (diff) | |
| download | mmosmacs-3610bda9882a50084fc8e693622e82eae6a70859.tar.gz mmosmacs-3610bda9882a50084fc8e693622e82eae6a70859.tar.bz2 mmosmacs-3610bda9882a50084fc8e693622e82eae6a70859.zip | |
Differentiate between CLOSED agenda items and logbook DONE states
| -rw-r--r-- | init.el | 2 |
1 files changed, 1 insertions, 1 deletions
| @@ -1349,7 +1349,7 @@ | |||
| 1349 | (setq txt (org-agenda-format-item | 1349 | (setq txt (org-agenda-format-item |
| 1350 | (cond | 1350 | (cond |
| 1351 | ;; CHANGES ARE HERE | 1351 | ;; CHANGES ARE HERE |
| 1352 | (closedp (concat "Closed: " (spaces-string 12))) | 1352 | (closedp (concat "Closed: " "CLOSED" (spaces-string 6))) |
| 1353 | (statep (concat "State: " state (spaces-string (- 12 (length state))))) | 1353 | (statep (concat "State: " state (spaces-string (- 12 (length state))))) |
| 1354 | (t (concat "Clocked: " clocked (spaces-string (- 12 (length clocked)))))) | 1354 | (t (concat "Clocked: " clocked (spaces-string (- 12 (length clocked)))))) |
| 1355 | ;; END CHANGES | 1355 | ;; END CHANGES |