The source project of this merge request has been removed.
Python indentation: decrease indent when appropriate keyword is typed
When a keyword such as else
, elif
, except
, finally
is typed, the indentation level of the current line is decreased. To minimize false-positives, indentation is only decreased if the previous non-empty line has the same indentation level as the current line. I've been using this for the past weeks without any problems.