Correct indentation of HTML and PHP using Vim

前端 未结 10 490
悲&欢浪女
悲&欢浪女 2020-11-29 20:02

I\'ve been using Vim for a while, and I can\'t get proper HTML indentation working in PHP files.

For example, what I want is for each child to be indented one tab mo

10条回答
  •  伪装坚强ぢ
    2020-11-29 20:29

    In php+html I found the following is good for me.

    :set ft=html # Change the file type to html
    =G # to indent all lines 
    :set ft=phtml # Change the file type to phtml
    =G # to indent all php lines
    

提交回复
热议问题