Disclaimer: I am new to org-mode.
In org-mode, I sometimes add extra empty lines to make the separation between different tasks clearer when they are expanded. Like so:
** Task 1
*** Subtask 1.1
text text
*** Subtask 1.2
** Task 2
The problem is that when I fold 'Task 1' (by pressing C-tab while on its line) the subtasks and their contents are folded correctly, but the content of 'Subtask 1.2' is also folded (namely, the new line under it).
If I press C-tab while on the line of 'Subtask 1.2', the message 'SUBTREE (NO CHILDREN)' is printed and 'Subtask 1.2' is correctly not folded.
Is this normal? Can I somehow correct this behaviour so that empty content is not folded?
org-cycle-separator-lineshelp any? orgmode.org/manual/Headlines.html To learn more about all the possible customizations for said variable, typeM-x describe-variable RET org-cycle-separator-lines RETTo know whether any behavior in Emacs is normal, start withemacs -qand see how it behaves by default with no user-configuration. - lawlistoutline-blank-line: "Non-nil means to leave unhidden blank line before heading." This will affect commands such asorg-content. - lawlistsetq(and including negative values fororg-cycle-separator-lines) but that did not change the folding behaviour. - Tohiko