Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

When working in a PHP file, is there a way that I can get HTML auto completion? Right now all of the auto complete suggestions are PHP only.

share|improve this question
I haven't got notepad++ to test this on, but doesn't stackoverflow.com/questions/5049861/… answer the question? – piddl0r Aug 13 '12 at 15:58

closed as off topic by Dan Grossman, jordanm, hakre, ρяσѕρєя K, Yoshi Aug 13 '12 at 21:18

Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.

1 Answer

IIRC the autocomplete model in Notepad++ is not aware about the fact that PHP actually can be embedded into HTML. Or more generally: That there are different languages in different segments of the same file.

You might want to file a feature request on the projects website and sponsor some development.

share|improve this answer
That's the conclusion I came to after doing some research. Was still hopeful someone here would know, though. Thanks. – Brian Aug 13 '12 at 16:03
I'm not 100% sure either. You might even be able to tell Notepad++ to use two autocomplete files for your .php files or you merge the html and php one into a "phtml" one, these files are XML files. If it does not support that, I would try with merging two. Just experiment a bit. – hakre Aug 13 '12 at 16:07

Not the answer you're looking for? Browse other questions tagged or ask your own question.