gregsexton / MatchTag

Vim's MatchParen for HTML tags
http://www.vim.org/scripts/script.php?script_id=3818
310 stars 31 forks source link

FIX: Also skip tags inside XML comments. #16

Closed inkarkat closed 11 years ago

inkarkat commented 11 years ago

The check only contained the syntax group names of HTML comments; there are similar syntax groups for XML. As it's hard to derive the names from the actually used filetype (it could be a custom one derived from either HTML or XML), always match both.

gregsexton commented 11 years ago

Thanks for fixing this stuff.