feat(colors): lua multiline string highlighting
This commit is contained in:
parent
ab66ea8c82
commit
d3c5ceab74
|
@ -562,6 +562,10 @@ local highlight_groups = {
|
||||||
luaParens = 'Delimiter',
|
luaParens = 'Delimiter',
|
||||||
luaSpecialTable = 'Structure',
|
luaSpecialTable = 'Structure',
|
||||||
luaSpecialValue = 'Function',
|
luaSpecialValue = 'Function',
|
||||||
|
luaStringLongTag = function(self)
|
||||||
|
local delimiter = self.Delimiter
|
||||||
|
return {bg=delimiter.bg, fg=delimiter.fg, style='italic'}
|
||||||
|
end,
|
||||||
|
|
||||||
--[[ 4.3.12. Make ]]
|
--[[ 4.3.12. Make ]]
|
||||||
makeCommands = 'Statment',
|
makeCommands = 'Statment',
|
||||||
|
|
Loading…
Reference in New Issue