Add C# interpolation highlits

This commit is contained in:
Iron_E 2020-08-18 14:03:10 -04:00
parent 5e9f0178b8
commit bb6f3dd3f4
No known key found for this signature in database
GPG Key ID: B0B37DE7EDC2335F
1 changed files with 7 additions and 5 deletions

View File

@ -226,7 +226,7 @@ local highlight_groups = {
--[[ 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},
@ -361,6 +361,8 @@ local highlight_groups = {
csContextualStatement = 'Conditional', csContextualStatement = 'Conditional',
csEndColon = 'Delimiter', csEndColon = 'Delimiter',
csGeneric = 'Typedef', csGeneric = 'Typedef',
csInterpolation = 'Include',
csInterpolationDelimiter = 'SpecialChar',
csLogicSymbols = 'Operator', csLogicSymbols = 'Operator',
csModifier = 'Keyword', csModifier = 'Keyword',
csNew = 'Operator', csNew = 'Operator',