我有以下情况:
if 1 < 2:
print("this line is part of the if statement")
print("this is NOT part of the if statement")
如果我使用indent-according-to-mode
Emacs 命令,它会将第二个缩进print()
作为 if 语句的一部分。像这样:
if 1 < 2:
print("this line is part of the if statement")
print("this is NOT part of the if statement")
在我看来,行的缩进不应该改变。是否可以“修复”或自定义此行为?