diff options
author | Evgeni Chasnovski <evgeni.chasnovski@gmail.com> | 2024-01-25 11:33:15 +0200 |
---|---|---|
committer | Christian Clason <c.clason@uni-graz.at> | 2024-01-25 20:09:24 +0100 |
commit | d4bd6b1eaab3729d70304d0e163df4eb141099b3 (patch) | |
tree | 9f04bd7640f2a3bac986893c63e21459aadd680a /test | |
parent | 3ab6f60dc80d36f968102ba14b7c4ec96efeb56d (diff) | |
download | rneovim-d4bd6b1eaab3729d70304d0e163df4eb141099b3.tar.gz rneovim-d4bd6b1eaab3729d70304d0e163df4eb141099b3.tar.bz2 rneovim-d4bd6b1eaab3729d70304d0e163df4eb141099b3.zip |
fix(colorscheme): use explicit normal foreground in syntax groups
Problem: Some core syntax highlight groups are cleared with intention to
always be shown without additional highlighting. This doesn't always
work as intended, especially with fallback mechanism of @-groups.
Example: `Statement`/`Keyword` group shown in help code blocks
(`@markup.raw`) is shown as bold (from `Statement`) cyan (from
`@markup.raw`) instead of bold grey.
Solution: Explicitly use normal grey foreground in syntax groups where
it was previously implicitly assumed.
Diffstat (limited to 'test')
-rw-r--r-- | test/functional/ui/cursor_spec.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/ui/cursor_spec.lua b/test/functional/ui/cursor_spec.lua index 8d58c11302..871e9a0790 100644 --- a/test/functional/ui/cursor_spec.lua +++ b/test/functional/ui/cursor_spec.lua @@ -248,7 +248,7 @@ describe('ui/cursor', function() m.attr = { background = Screen.colors.DarkGray } end if m.id_lm then - m.id_lm = 70 + m.id_lm = 69 end end |