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
This would result to "bullet-less" headings e.g. in top-level.
I achieved this by setting:
(make-variable-buffer-local 'org-superstar-headline-bullets-list) ;; this only if you want it only for some org buffers
(setq org-superstar-headline-bullets-list '("" "" "" "" "" "" "*"))
resulting behavior is what i want, but produces some "syntax-sugar-noise", i guess because regex-searches (font-lock functions or overlays) are not prepared for an empty string "" character.
maybe would be cool to just spefify nil or sth: (setq org-superstar-headline-bullets-list '(nil nil "" "" "" "" "*"))
The text was updated successfully, but these errors were encountered:
Interesting, so you would like some heading levels to have no bullets, but also no indentation? Normally I would suggest using a space to keep indentation from level to level consistent, otherwise the ZWS solution from @jtoloe is sensible. The alternative would be to mimic the behavior of org-superstar-remove-leading-stars for indiv. bullets. What do you think?
This would result to "bullet-less" headings e.g. in top-level.
I achieved this by setting:
(make-variable-buffer-local 'org-superstar-headline-bullets-list) ;; this only if you want it only for some org buffers
(setq org-superstar-headline-bullets-list '("" "" "" "" "" "" "*"))
resulting behavior is what i want, but produces some "syntax-sugar-noise", i guess because regex-searches (font-lock functions or overlays) are not prepared for an empty string "" character.
maybe would be cool to just spefify nil or sth: (setq org-superstar-headline-bullets-list '(nil nil "" "" "" "" "*"))
The text was updated successfully, but these errors were encountered: