Is there any way to highlight heredocs/nowdocs with a specific syntax that could be configurable, say "heredoc_highlight_lang="html" or something and have heredocs highlight as such?
The following example should highlight the heredocs with html, not as a string:
<?php
$html = <<<END
<html>
<head>
<title>Heredocs</title>
</head>
<body>
This should highlight as html, not as a string.
</body>
</html>
print $html;
?>
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Is there any way to highlight heredocs/nowdocs with a specific syntax that could be configurable, say "heredoc_highlight_lang="html" or something and have heredocs highlight as such?
The following example should highlight the heredocs with html, not as a string:
<?php
$html = <<<END
<html>
<head>
<title>Heredocs</title>
</head>
<body>
This should highlight as html, not as a string.
</body>
</html>
print $html;
?>
I think it's a scintilla issue..