简体   繁体   中英

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

Suppose we have this in org file:

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

1. item1
    wow, fantasy
2. item2
    emmmmm

when i <tab> the headline Shopping , it display the details of plain list items.

what i want is below instead:

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

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

I have try add both #+STARTUP: overview and property :VISIBILITY: folded , but neither of them works for me.

(setq org-cycle-include-plain-lists 'integrate) should fix your issue.

From the docs: If this variable is set to integrate, plain list items will be treated like low-level headlines.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

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