Add C# interpolation highlits
This commit is contained in:
parent
5e9f0178b8
commit
bb6f3dd3f4
|
@ -225,12 +225,12 @@ local highlight_groups = {
|
||||||
Typedef = {bg=NONE, fg=cyan, style='italic'},
|
Typedef = {bg=NONE, fg=cyan, style='italic'},
|
||||||
|
|
||||||
--[[ 4.1.6. Edge Cases]]
|
--[[ 4.1.6. Edge Cases]]
|
||||||
Special = {bg=NONE, fg=magenta, style='bold'},
|
Special = {bg=NONE, fg=magenta, style='bold'},
|
||||||
SpecialChar = 'Character',
|
SpecialChar = {bg=NONE, fg=red_light, style='italic'},
|
||||||
SpecialKey = 'Character',
|
SpecialKey = 'Character',
|
||||||
Tag = 'Underlined',
|
Tag = 'Underlined',
|
||||||
Delimiter = {bg=NONE, fg=white, style=NONE},
|
Delimiter = {bg=NONE, fg=white, style=NONE},
|
||||||
SpecialComment = {bg=NONE, fg=gray, style={'bold', 'nocombine'}},
|
SpecialComment = {bg=NONE, fg=gray, style={'bold', 'nocombine'}},
|
||||||
Debug = 'WarningMsg',
|
Debug = 'WarningMsg',
|
||||||
|
|
||||||
--[[ 4.1.7. Help Syntax]]
|
--[[ 4.1.7. Help Syntax]]
|
||||||
|
@ -361,7 +361,9 @@ local highlight_groups = {
|
||||||
csContextualStatement = 'Conditional',
|
csContextualStatement = 'Conditional',
|
||||||
csEndColon = 'Delimiter',
|
csEndColon = 'Delimiter',
|
||||||
csGeneric = 'Typedef',
|
csGeneric = 'Typedef',
|
||||||
csLogicSymbols = 'Operator',
|
csInterpolation = 'Include',
|
||||||
|
csInterpolationDelimiter = 'SpecialChar',
|
||||||
|
csLogicSymbols = 'Operator',
|
||||||
csModifier = 'Keyword',
|
csModifier = 'Keyword',
|
||||||
csNew = 'Operator',
|
csNew = 'Operator',
|
||||||
csNewType = 'Type',
|
csNewType = 'Type',
|
||||||
|
|
Loading…
Reference in New Issue