所以问题基本上是自动缩进。我在用户配置中使用它在 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>
有没有办法来解决这个问题?