-
-
Notifications
You must be signed in to change notification settings - Fork 104
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
punctuation.delimiter
treesitter group nearly invisible
#329
Comments
Hi, thanks for reporting this. Which theme are you using? The issue seems to have to do with the |
Hey @tmillr, thanks for the response. I'm using |
Ah, I think this is related: neovim/neovim#26378 Similar thing happened in another repo: whatyouhide/vim-gotham#68 |
Without knowing what I'm doing, |
Yeah that's the hl group causing issues. It's part of nvim's (new?) defaults apparently (see I suppose what we need to do (one idea) going forward is to make sure to set/clear basically all highlight groups, including those which should just inherit the default fg:
The names marked with * are the preferred groups; the others are minor groups.
For the preferred groups, the "syntax.vim" file contains default highlighting.
The minor groups are linked to the preferred groups, so they get the same
highlighting. You can override these defaults by using ":highlight" commands
after sourcing the "syntax.vim" file. From
|
Somehow delimiters (e.g.,
:
,;
,,
,.
) are nearly invisible. I'm on Neovim 0.10.0 with the latestgithub-nvim-theme
commit.I checked
:hi @punctuation.delimiter
and nothing shows up, so it seems like no highlighting is defined for that group. Am I missing something?Thanks.
The text was updated successfully, but these errors were encountered: