Given that (setq org-list-allow-alphabetical t).
Consider the following example, where | stands for the point:
1. |Lorem Ipsum 1. Lorem Ipsum 1. |Lorem Ipsum a. Lorem Ipsum While org-fill-paragraph does nothing in the first Org snippet, it collapses the two lines in the second:
1. Lorem Ipsum a. Lorem Ipsum I'm working on a specific case where read-only-mode is in use and don't need to export the Org buffer to pdf or other file types. However, I have to keep the alphabetical numbering at least visually as the content refer to them as such. Hence, I'm currently considering a workaround which consists of
- replacing alphabetical bullets by numeral ones ;
- then using overlays with the
'displayproperty to display them as they were alphabetical bullets.
As the underlying bullets are numeral, org-fill-paragraph would work as expected.
Are there better solutions for this issue ?
(org-element-update-syntax)or restart emacs after updatingorg-list-allow-alphabetical?org-list-allow-alphabeticalis not set totby default ?