diff options
author | zeertzjq <zeertzjq@outlook.com> | 2023-01-31 07:08:23 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-31 07:08:23 +0800 |
commit | 860fea1a3f880c2da0ac351a9523156bcfc67361 (patch) | |
tree | 98289627820327d683aee65a6a9ee73e37f1f9e8 /test/functional/api/highlight_spec.lua | |
parent | 27b81af19c498892f4b0444ad29b7be842f8e7b8 (diff) | |
download | rneovim-860fea1a3f880c2da0ac351a9523156bcfc67361.tar.gz rneovim-860fea1a3f880c2da0ac351a9523156bcfc67361.tar.bz2 rneovim-860fea1a3f880c2da0ac351a9523156bcfc67361.zip |
fix(highlight): properly deal with underline mask when listing (#22057)
Diffstat (limited to 'test/functional/api/highlight_spec.lua')
-rw-r--r-- | test/functional/api/highlight_spec.lua | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/functional/api/highlight_spec.lua b/test/functional/api/highlight_spec.lua index 5941d4c68b..7f044977cb 100644 --- a/test/functional/api/highlight_spec.lua +++ b/test/functional/api/highlight_spec.lua @@ -214,7 +214,7 @@ describe("API: set highlight", function() bold = true, italic = true, reverse = true, - underline = true, + underdashed = true, strikethrough = true, altfont = true, cterm = { @@ -231,7 +231,7 @@ describe("API: set highlight", function() bold = true, italic = true, reverse = true, - underline = true, + underdashed = true, strikethrough = true, altfont = true, } @@ -297,7 +297,7 @@ describe("API: set highlight", function() exec_capture('highlight Test_hl')) meths.set_hl(0, 'Test_hl2', highlight3_config) - eq('Test_hl2 xxx cterm=italic,reverse,strikethrough,altfont,nocombine ctermfg=8 ctermbg=15 gui=bold,underline,italic,reverse,strikethrough,altfont guifg=#ff0000 guibg=#0032aa', + eq('Test_hl2 xxx cterm=italic,reverse,strikethrough,altfont,nocombine ctermfg=8 ctermbg=15 gui=bold,underdashed,italic,reverse,strikethrough,altfont guifg=#ff0000 guibg=#0032aa', exec_capture('highlight Test_hl2')) -- Colors are stored with the name they are defined, but |