在org-mode中可以使用TAB键来折叠标题和列表。
折叠标题还可以在配置文件中加入下面这句:
(setq org-startup-folded 'content);; 只显示标题
或者在文件开头加上:
#+STARTUP: overview
#+STARTUP: content
#+STARTUP: showall
#+STARTUP: showeverything
那么也可以设置列表默认折叠吗?怎么设置列表默认折叠?
在org-mode中可以使用TAB键来折叠标题和列表。
折叠标题还可以在配置文件中加入下面这句:
(setq org-startup-folded 'content);; 只显示标题
或者在文件开头加上:
#+STARTUP: overview
#+STARTUP: content
#+STARTUP: showall
#+STARTUP: showeverything
那么也可以设置列表默认折叠吗?怎么设置列表默认折叠?
(setq org-cycle-include-plain-lists 'integrate)
将列表视为heading
成功了 ,配置文件中添加这句后一开始没成功,后面发现是因为打开的文件只有列表。customize里这个选项的解释是“As children of outline headings",给文件加上标题后,标题下的列表就可以像标题一样折叠了。