mirror of
https://github.com/neovim/neovim
synced 2025-07-15 16:51:49 +00:00
fix(api): make nvim_set_hl()
respect all cterm
attributes (#31390)
(cherry picked from commit 8de1dc6923
)
This commit is contained in:
committed by
github-actions[bot]
parent
1a12dea191
commit
163a532cfa
@ -1098,6 +1098,9 @@ HlAttrs dict2hlattrs(Dict(highlight) *dict, bool use_rgb, int *link_id, Error *e
|
||||
CHECK_FLAG(cterm, cterm_mask, italic, , HL_ITALIC);
|
||||
CHECK_FLAG(cterm, cterm_mask, underline, , HL_UNDERLINE);
|
||||
CHECK_FLAG(cterm, cterm_mask, undercurl, , HL_UNDERCURL);
|
||||
CHECK_FLAG(cterm, cterm_mask, underdouble, , HL_UNDERDOUBLE);
|
||||
CHECK_FLAG(cterm, cterm_mask, underdotted, , HL_UNDERDOTTED);
|
||||
CHECK_FLAG(cterm, cterm_mask, underdashed, , HL_UNDERDASHED);
|
||||
CHECK_FLAG(cterm, cterm_mask, standout, , HL_STANDOUT);
|
||||
CHECK_FLAG(cterm, cterm_mask, strikethrough, , HL_STRIKETHROUGH);
|
||||
CHECK_FLAG(cterm, cterm_mask, altfont, , HL_ALTFONT);
|
||||
|
@ -309,6 +309,15 @@ describe('API: set highlight', function()
|
||||
eq({ underdotted = true }, api.nvim_get_hl_by_name('Test_hl', true))
|
||||
end)
|
||||
|
||||
it('can set all underline cterm attributes #31385', function()
|
||||
local ns = get_ns()
|
||||
local attrs = { 'underline', 'undercurl', 'underdouble', 'underdotted', 'underdashed' }
|
||||
for _, attr in ipairs(attrs) do
|
||||
api.nvim_set_hl(ns, 'Test_' .. attr, { cterm = { [attr] = true } })
|
||||
eq({ [attr] = true }, api.nvim_get_hl_by_name('Test_' .. attr, false))
|
||||
end
|
||||
end)
|
||||
|
||||
it('can set a highlight in the global namespace', function()
|
||||
api.nvim_set_hl(0, 'Test_hl', highlight2_config)
|
||||
eq(
|
||||
|
Reference in New Issue
Block a user