Emacs org-mode: 如何默认隐藏普通列表项的详细信息

Emacs org-mode: how to hide the details of plain list items by default

假设我们在 org 文件中有这个:

* Shopping
I'm going to buy these items in the grocery;

1. item1
    wow, fantasy
2. item2
    emmmmm

当我 <tab> 标题 Shopping 时,它显示普通列表项的详细信息。

下面是我想要的:

* Shopping
I'm going to buy these items in the grocery;

1. item1...
2. item2...

我尝试添加 #+STARTUP: overview 和 属性 :VISIBILITY: folded,但它们都不适合我。

(setq org-cycle-include-plain-lists 'integrate) 应该可以解决您的问题。

来自文档:如果此变量设置为集成,则普通列表项将被视为 low-level 标题。