How to create new line in Godot text editor without indent?

:information_source: Attention Topic was automatically imported from the old Question2Answer platform.
:bust_in_silhouette: Asked By goshot

With cursor at the end of the print(“x”) line below indicated by |, pressing creates a new line with an indent matching the indent of the print(“x”). Is there a keyboard shortcut to create a new line with no indenting?

func _ready():
    print("x")|

You could press the down key, but there has to be an empty line under the current one

Adam_S | 2019-09-15 16:41

That works if the next line is a blank line, but, if the next line is not blank, it goes to the same column on the next line or end of the next line if the next line is shorter than the current line.

goshot | 2019-09-15 20:03