Question

In Emacs, I have a set of TODOs in the following format

* H1
** H2
*** H3
**** TODO X

When I look at the agenda-todo view, it shows up only as TODO x. Is there any way to get the agenda view to display it as H1/H2/H3/TODO X ?

Was it helpful?

Solution

I found this solution from here

(setq org-agenda-prefix-format '((agenda . " %i %-12:c%?-12t% s")
         (timeline . "  % s")
         (todo .
               " %i %-12:c %(concat \"[ \"(org-format-outline-path (org-get-outline-path)) \" ]\") ")
         (tags .
               " %i %-12:c %(concat \"[ \"(org-format-outline-path (org-get-outline-path)) \" ]\") ")
         (search . " %i %-12:c"))
      )

This shows the breadcrumbs in the agenda todo view.

OTHER TIPS

You should be able to use %b in the format string to show the breadcrumb.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top