aboutsummaryrefslogtreecommitdiff
path: root/test/functional/ui/bufhl_spec.lua
diff options
context:
space:
mode:
authorzeertzjq <zeertzjq@outlook.com>2024-02-15 07:49:39 +0800
committerzeertzjq <zeertzjq@outlook.com>2024-02-15 10:50:29 +0800
commit31b3c62845fe7da41eed0089990e1540b9a41053 (patch)
treeec37101abea724286967f973bd3bf73fe432bd0d /test/functional/ui/bufhl_spec.lua
parent440ce0d2462677685d2f981ad3e928c28526e6d3 (diff)
downloadrneovim-31b3c62845fe7da41eed0089990e1540b9a41053.tar.gz
rneovim-31b3c62845fe7da41eed0089990e1540b9a41053.tar.bz2
rneovim-31b3c62845fe7da41eed0089990e1540b9a41053.zip
vim-patch:9.1.0106: Visual highlight hard to read with 'termguicolors'
Problem: Visual highlight hard to read with 'termguicolors' (Maxim Kim) Solution: Set Visual GUI foreground to black (with background=light) and lightgrey (with background=dark) (Maxim Kim) fixes: vim/vim#14024 closes: vim/vim#14025 https://github.com/vim/vim/commit/34e4a05d02a016fe230495be8f6c60ddd56f9567 Co-authored-by: Maxim Kim <habamax@gmail.com>
Diffstat (limited to 'test/functional/ui/bufhl_spec.lua')
-rw-r--r--test/functional/ui/bufhl_spec.lua2
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 },