In php file :

<?php
...
?>
<html>

</html>

I could not indent the html source code with operator =.

How could I indent it?

link|improve this question

73% accept rate
feedback

2 Answers

up vote 1 down vote accepted

My workaround for this is to temporarily switch to html mode, mark region and indent, and then go back to php mode.

:set filetype=html
" mark html code
=
:set filetype=php
link|improve this answer
feedback

There is an entry on the Vim Tips Wiki that details how to enable indenting of both PHP and HTML areas of PHP files: http://vim.wikia.com/wiki/Better_indent_support_for_php_with_html

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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