adjust xml so that it more closely matches html (#104)

* adjust xml so that it more closely matches html

* formatting fixes
This commit is contained in:
Derek Sifford 2018-09-20 13:25:07 -04:00 committed by GitHub
parent 72a0d0d584
commit 15d0ff9f1a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2,6 +2,12 @@ if dracula#should_abort('xml')
finish
endif
hi! link xmlTag DraculaGreen
hi! link xmlEndTag DraculaGreen
hi! link xmlAttrib DraculaGreenItalic
hi! link xmlEqual Operator
hi! link xmlTag Delimiter
hi! link xmlTagName Statement
" Fixes missing highlight over end tags
syn region xmlTagName
\ matchgroup=xmlTag start=+</[^ /!?<>"']\@=+
\ matchgroup=xmlTag end=+>+