Fix bug with "NONE" default detection
This commit is contained in:
parent
576ea2b6a1
commit
588b4729db
|
@ -86,7 +86,7 @@ local function highlight(highlight_group, attributes) -- {{{ †
|
|||
if type(style) == 'table' then
|
||||
-- Concat all of the entries together with a comma between before styling.
|
||||
stylize(highlight_cmd, table.concat(style, ','), style.color)
|
||||
else -- just style the single entry.
|
||||
elseif style then -- just style the single entry.
|
||||
stylize(highlight_cmd, style)
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in New Issue