Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[feature request] hide ALL stars/bullets for some heading-levels #38

Open
johsacher opened this issue Nov 2, 2021 · 2 comments
Open
Labels
enhancement New feature or request

Comments

@johsacher
Copy link

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 "" "" "" "" "*"))

@jtoloe
Copy link

jtoloe commented Dec 16, 2022

You could try using the unicode "Zero Width Space" (8203) character instead of the empty string.

@integral-dw integral-dw added the enhancement New feature or request label Jan 16, 2023
@integral-dw
Copy link
Owner

integral-dw commented Jan 16, 2023

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?

@integral-dw integral-dw added question Further information is requested and removed question Further information is requested labels Jan 16, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

3 participants