Hi,
Is there a way to get the text underneath a todo heading to show up in the agenda screen? I like to put extra info there, like driving directions, and it would be nice to have that info when I print out the agenda.
Here is an example:
*** TODO Potluck at Sally's :next:
Drive north on 405
Turn left at the barn
Blah blah blah, more stuff I want to include
And my custom agenda currently looks like this:
(setq org-agenda-custom-commands
'(("p" "Print List"
((tags-todo "NEXT" ((org-agenda-prefix-format "[ ] %T: ")
(org-agenda-sorting-strategy '(tag-up priority-down))
(org-agenda-todo-keyword-format "")
(org-agenda-overriding-header "\nNext Actions\n------------------\n")))
(tags-todo "buy" ((org-agenda-prefix-format "[ ] %T: ")
(org-agenda-sorting-strategy '(tag-up priority-down))
(org-agenda-todo-keyword-format "")
(org-agenda-overriding-header "\nShopping List\n------------------\n"))))
((org-agenda-sorting-strategy '(priority-down))
(org-agenda-with-colors nil)
(org-agenda-todo-keyword-format "")
(org-agenda-compact-blocks t)
(org-agenda-remove-tags t)
(ps-number-of-columns 2)
(ps-landscape-mode t)))))
Thanks!
Anthony