1 line
1.7 KiB
Plaintext
1 line
1.7 KiB
Plaintext
<!-- SC_OFF --><div class="md"><p>I'm trying to make a custom org-mode agenda view that shows not only all tasks in the waiting state, but also the message I entered when changing state. Relevant Lisp from init.el:</p> <pre><code>(setq org-agenda-custom-commands '(("c" "My custom agenda" ((todo "WAITING|HOLD" ((org-agenda-overriding-header "Waiting and postponed tasks") (org-agenda-sorting-strategy '(category-keep))))))) org-log-into-drawers "LOGBOOK" org-todo-keywords '((sequence "TODO(t)" "WORK(w)" "|" "DONE(d)") (sequence "HOLD(h@/!)" "WAITING(W@/!)" "|" "CANCELLED(c@/!)"))) </code></pre> <p>Example snippet from job.org:</p> <pre><code>* WAITING Replace failing 2TB drive in Wrath :LOGBOOK: - State "WAITING" from "TODO" [2021-11-30 Tue 13:33] \\ Spare parts ordered :END: </code></pre> <p>How it looks now:</p> <pre><code>Waiting and postponed tasks job: WAITING Replace failing 2TB drive in Wrath </code></pre> <p>What I want:</p> <pre><code>Waiting and postponed tasks job: WAITING Replace failing 2TB drive in Wrath Spare parts ordered </code></pre> <p>Anyone done anything similar before, or have any pointers for how I can achieve something similar?</p> </div><!-- SC_ON -->   submitted by   <a href="https://www.reddit.com/user/ThatSwedishBastard"> /u/ThatSwedishBastard </a> <br/> <span><a href="https://www.reddit.com/r/emacs/comments/r5vvwt/orgmode_and_custom_agenda_troubles/">[link]</a></span>   <span><a href="https://www.reddit.com/r/emacs/comments/r5vvwt/orgmode_and_custom_agenda_troubles/">[comments]</a></span> |