在 Org-mode 中,有没有办法在折叠子树时显示未完成的待办事项的数量?

在 Org-mode 中,有没有办法在折叠子树时显示未完成的待办事项的数量?

例如,假设我有这个文档:

* category 1
** TODO item 1.1
** not a todo item
** DONE a done todo item
** TODO item 1.4
* category 2
** not a todo item
** not a todo item
* category 3
** DONE done item
* category 4
** TODO item 4.1
*** TODO subitem 4.1.1
*** TODO subitem 4.1.2

当折叠时,我希望看到类似以下内容的内容:

* category 1 (2)...
* category 2 (0)...
* category 3 (2)...
* category 4 (3)...

答案1

添加进度 Cookie您的待办事项将反映已完成事项的数量与待办事项总数。

[/]只需在标题末尾添加并C-c C-c更新即可。

例子:

* category 1 [1/3]
** TODO item 1.1
** not a todo item
** DONE a done todo item
** TODO item 1.4

这适用于待办事项或带有复选框的列表。

相关内容