我在mac / Linux上安装了原子编辑器,我得到了大部分用于Python编辑的东西,除了一个非常讨厌的东西,它是函数缩进的换行符。我将尝试描述我的意思,现在这种方法正常:
def my_function():
do_something <== automatically indented when I press enter
但是,当在函数调用或定义中缩进参数时,行为是错误的。
myfunction(args,
another_arg <=== not correctly indented should be indented to just below args.
我需要在atom中进行自定义才能使其正常工作?