I’ve been using Sublime for about 3 years and never encountered this problem before.
The problem is that I write some bracket or quote inside an empty html tag those will not get matched unless I put some spaces inside the html tag. It seems some regex error where the brackets and quotes don’t get recognised because of the “><” characters.
Anyone knows how to solve this?
So for example these do not get matched.
<span>{</span>
<span>"</span>
<span></span>
But these will
<span> {} </span>
<span> ] </span>
<span> "" </span>
I’ve never had to put those characters in an html tag before, but now I’m doing some angular where this is very common:
<span>{{something}}</span>