Vim: How to indent html code correctly in php file?

1

In php file :

<?php
...
?>
<html>

</html>

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

How could I indent it?

Jichao

Posted 2010-09-18T02:58:15.660

Reputation: 5 245

Answers

5

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

Benjamin Bannier

Posted 2010-09-18T02:58:15.660

Reputation: 13 999

2

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

Heptite

Posted 2010-09-18T02:58:15.660

Reputation: 16 267

0

i added this to vimrc

au BufEnter,BufNew *.php :set filetype=html

kapil

Posted 2010-09-18T02:58:15.660

Reputation: 101