diff options
author | zeertzjq <zeertzjq@outlook.com> | 2024-02-15 11:17:21 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-15 11:17:21 +0800 |
commit | b76a01055f2d1d616f6642b9919851e4ffe5ad40 (patch) | |
tree | ec37101abea724286967f973bd3bf73fe432bd0d /test/functional/ui/bufhl_spec.lua | |
parent | d09957e0a06f350443c750d9838b5f1016c0cccc (diff) | |
parent | 31b3c62845fe7da41eed0089990e1540b9a41053 (diff) | |
download | rneovim-b76a01055f2d1d616f6642b9919851e4ffe5ad40.tar.gz rneovim-b76a01055f2d1d616f6642b9919851e4ffe5ad40.tar.bz2 rneovim-b76a01055f2d1d616f6642b9919851e4ffe5ad40.zip |
Merge pull request #27474 from zeertzjq/vim-9.1.0068
vim-patch:9.1.{0068,0106}: Visual highlighting can be improved
Diffstat (limited to 'test/functional/ui/bufhl_spec.lua')
-rw-r--r-- | test/functional/ui/bufhl_spec.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/ui/bufhl_spec.lua b/test/functional/ui/bufhl_spec.lua index 417a19f92c..896f75a681 100644 --- a/test/functional/ui/bufhl_spec.lua +++ b/test/functional/ui/bufhl_spec.lua @@ -29,7 +29,7 @@ describe('Buffer highlighting', function() [10] = { foreground = Screen.colors.Red }, [11] = { foreground = Screen.colors.Grey100, background = Screen.colors.Red }, [12] = { foreground = Screen.colors.Blue1 }, - [13] = { background = Screen.colors.LightGrey }, + [13] = { foreground = Screen.colors.Black, background = Screen.colors.LightGrey }, [14] = { background = Screen.colors.Gray90 }, [15] = { background = Screen.colors.Gray90, bold = true, foreground = Screen.colors.Brown }, [16] = { foreground = Screen.colors.Magenta, background = Screen.colors.Gray90 }, |