HTML内に、ファイルを含むphpスクリプトがあります。その時点で、コードは2つのタブにインデントされます。私がやりたいのは、phpスクリプトに各行に2つのタブを追加させることです。次に例を示します。
メインページ:
<body>
<div>
<?php include("test.inc"); ?>
</div>
</body>
そして「test.inc」:
<p>This is a test</p>
<div>
<p>This is a nested test</p>
<div>
<p>This is an more nested test</p>
</div>
</div>
私が得るもの:
<body>
<div>
<p>This is a test</p>
<div>
<p>This is a nested test</p>
<div>
<p>This is an more nested test</p>
</div>
</div>
</div>
</body>
私が欲しいもの:
<body>
<div>
<p>This is a test</p>
<div>
<p>This is a nested test</p>
<div>
<p>This is an more nested test</p>
</div>
</div>
</div>
</body>
インクルードファイルに先頭のタブを追加するだけでよいことに気付きました。ただし、ドキュメントをフォーマットすると、VSはそれらを削除し続けます。