We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
winhighlight
local function make_winhighlight(highlight) return table.concat( vim.tbl_map(function(key) return key .. ":" .. highlight[key] end, vim.tbl_keys(highlight)), "," ) end local winhighlight = make_winhighlight({ Normal = "Normal", FloatBorder = "SpecialChar" }) -- Normal:Normal,FloatBorder:SpecialChar