From edb5d9119be4065cfaa8b826ccf65872968783e3 Mon Sep 17 00:00:00 2001 From: Daniel Borchmann Date: Thu, 11 Apr 2024 19:01:04 +0200 Subject: [PATCH] Experimentally include plain lists in Org's visibility cycling It's nice to be able to collapse plain lists easily, as I have some quite large ones. The comment advises to be careful with certain situations yields strange results, though, which is why this setting is deemed experimental for the time being. --- init.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/init.el b/init.el index e1d8a10..cf55290 100644 --- a/init.el +++ b/init.el @@ -783,7 +783,8 @@ (defvar org-time-was-given nil))) (use-package org-cycle - :autoload (org-cycle-hide-drawers)) + :autoload (org-cycle-hide-drawers) + :init (setq org-cycle-include-plain-lists 'integrate)) ;; Drag-and-Drop images into org-mode buffer (use-package org-download