You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
## Details
Another feature related to org-mode indents. Rather than hard coding
that indents skip level 1 and increment from there allow users to set
whatever value they like using indent -> skip.
This tells us how many levels should be skipped before starting to
indent, default value remains 1.
Using a value of 0 will indent level 1 headings as well. Using a value
greater than 1 will indent relative to that level instead. Only kinda
tricky thing is to remember that the level change should be computed
relative to the parent level or this skip value, whichever is greater.
So setting a value of 2, then having an H1 & H3. The H3 should be
indented only once, so the parent level is calculated as 2 instead of 1.
Using negative values breaks things of course.
0 commit comments