SublimeText version 3114 Windows 64bit.
File: test.php, used syntax highlight: php.
This example breaks all html autocomplete inside of php condition:
<?php if(1) { ?>
<input value="<?php echo 1; ?>" type="text">
<?php } ?>
Also, type=“text” is grey color.
Next example with colon is work fine:
<?php if(1): ?>
<input value="<?php echo 1; ?>" type="text">
<?php endif; ?>
Is there a way to fix this bug?