Hi,
This is a small thing but a constant annoyance. I frequently use HEREDOC to include HTML in my PHP scripts. I often do something like this:
$html = <<<HTML
<html>
<head>...</head>
<body>...</body>
</html>
HTML; |
However, as I type the first line, because of code completion that is working in an invalid context, PhpEd insists that what I want is this!:
$html = <<<htmlentities() |
For another use case I often end up with:
For each of those I almost always end up having to go back and fix any heredocs. Kinda makes code-completion more of an annoyance than a help.
So, if possible it would be nice if you could disable code completion after the "<<<". Small things make a difference. Thanks for considering it.
-Mike