编码时,如果我在缩进后键入内容,它会缩进代码。
例子:
x = true
if x:
print('thing')
print('thing 2')
会变成
x = true
if x:
print('thing')
print('thing 2')
这非常烦人,我想知道如何禁用它?
编码时,如果我在缩进后键入内容,它会缩进代码。
例子:
x = true
if x:
print('thing')
print('thing 2')
会变成
x = true
if x:
print('thing')
print('thing 2')
这非常烦人,我想知道如何禁用它?