when coding, if I type something after indentation, it indents the code.
example:
x = true
if x:
print('thing')
print('thing 2')
would just become
x = true
if x:
print('thing')
print('thing 2')
this is extremely annoying and I would like to know how to disable this?