0

HTML Tag Completion with TAB on PHP Heredoc

Miguel Nunes 11 years ago 0

If you use TAB to complete html tags inside php heredoc it does not work.


<?php

$string = <<<HTML

<html>

div.test ...

</html>

HTML;

?>