highlighting for XML and JSX to fix open/close tags This fixes
issue #21. The reason for this is the default XML syntax which has different colors on start and end tags. This PR sets the open and close tags color to "BlueGreen" which is what VS code uses.
This commit is contained in:
parent
8a22d90a70
commit
d105bb4c39
1 changed files with 5 additions and 0 deletions
|
|
@ -256,6 +256,11 @@ call <sid>hi('jsDestructuringBlock', s:cdLightBlue, {}, 'none', {})
|
|||
call <sid>hi('jsObjectKey', s:cdLightBlue, {}, 'none', {})
|
||||
call <sid>hi('jsGlobalObjects', s:cdBlueGreen, {}, 'none', {})
|
||||
|
||||
" XML:
|
||||
call <sid>hi('xmlTag', s:cdBlueGreen, {}, 'none', {})
|
||||
call <sid>hi('xmlTagName', s:cdBlueGreen, {}, 'none', {})
|
||||
call <sid>hi('xmlEndTag', s:cdBlueGreen, {}, 'none', {})
|
||||
|
||||
" Ruby:
|
||||
call <sid>hi('rubyClassNameTag', s:cdBlueGreen, {}, 'none', {})
|
||||
call <sid>hi('rubyClassName', s:cdBlueGreen, {}, 'none', {})
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue