したがって、問題は基本的に自動インデントです。f12の自動インデントのユーザー構成でこれを使用します
{ "keys": ["f12"], "command": "reindent", "args": {"single_line": false} }
そして、htmlコードとphpコードを含むsomefile.phpで
<div>
<?php if(something):?>
hello world
<?php endif;?>
</div>
F12 の結果
<div>
<?php if(something):?>
hello world
<?php endif;?> //sublime is thinking the endif is a closing html tag.
</div>
これを修正する方法はありますか?