Fix bug with "NONE" default detection

This commit is contained in:
Iron_E 2020-09-06 12:56:08 -04:00
parent 576ea2b6a1
commit 588b4729db
No known key found for this signature in database
GPG Key ID: B0B37DE7EDC2335F
1 changed files with 1 additions and 1 deletions

View File

@ -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