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/legacy/visual_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/legacy/visual_spec.lua')
-rw-r--r-- | test/functional/legacy/visual_spec.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/legacy/visual_spec.lua b/test/functional/legacy/visual_spec.lua index 924ab8dbbe..151e5874e1 100644 --- a/test/functional/legacy/visual_spec.lua +++ b/test/functional/legacy/visual_spec.lua @@ -15,7 +15,7 @@ describe('Visual highlight', function() screen:set_default_attr_ids({ [0] = { foreground = Screen.colors.Blue, bold = true }, -- NonText [1] = { bold = true }, -- ModeMsg - [2] = { background = Screen.colors.LightGrey }, -- Visual + [2] = { background = Screen.colors.LightGrey, foreground = Screen.colors.Black }, -- Visual }) screen:attach() end) |