I have code:
def fun():
raise ValueError,"errormessage"
raise is like return, continue, break etc. That means that if raise is called, then after that no code can be executed. But if I start to write after raise statement, then editor jumps to align new line with "raise" statement, but it should align it with "def" line.
Tested on versions 0.21.0 and 0.22.0
def fun():
****raise ValueError,"errormessage"
spaces has gone. Actual code is like this. * are spaces.