You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
However, when trying to change the ending tag, by adding -- after </div, this extension tries to match that by adding -- to the starting tag of parent <div>:
I would suggest disabling the rename behavior inside comments (since the staring <!-- is in place, all the code following that should be considered comment until --> is inserted)
The text was updated successfully, but these errors were encountered:
For example, if I have the code below:
Now if I want to comment out the entire child
<div>
block, I would add!--
beforediv>
so it becomes:However, when trying to change the ending tag, by adding
--
after</div
, this extension tries to match that by adding--
to the starting tag of parent<div>
:As you can see this causes some inconvenience.
Proposal
I would suggest disabling the rename behavior inside comments (since the staring
<!--
is in place, all the code following that should be considered comment until-->
is inserted)The text was updated successfully, but these errors were encountered: