繁体   English   中英

是否有可能获得org-mode在议程待办事项列表中显示面包屑?

[英]Is it possible to get org-mode to show breadcrumbs in agenda todo list?

在Emacs中,我有一组TODO,格式如下

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

当我查看议程视图时,它只显示为TODO x 有没有办法让议程视图显示为H1/H2/H3/TODO X

我从这里找到了这个解决方案

(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"))
      )

这显示了议程视图中的面包屑。

您应该能够在格式字符串中使用%b来显示面包屑。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM