Hello there :) Hopefully you don't begin to dread seeing my name! I have a couple bug reports and one suggestion:
The red-highlighted brackets (a recent change?) are helpful, but two things:
1: They don't work right with php tags in-between:
<?php
if (true) {
?>
<p>Some HTML</p>
<?php
}
?>
The above snippet incorrectly highlights the {
and }
in red as though it were an error, but it's not(?)
2: It's common for php files to begin with <?php
but not have an ending ?>
; this helps avoid whitespace issues, and indeed is enshrined in various coding standards (example). Therefore, the red-highlighted <
for a PHP open tag without a closing tag suggests a problem that doesn't exist (closing tags are optional). It'd be nice to fix this, or at least make it configurable.
3: Found another "runaway indent":
<?php if (true): ?>
<!--
<?php echo "going right!"; ?>
-->
<?php endif; ?>