bug-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

bug#36884: Default python mode with electric-indent-mode sometimes inden


From: Jarosław Rzeszótko
Subject: bug#36884: Default python mode with electric-indent-mode sometimes indents empty lines
Date: Thu, 1 Aug 2019 09:06:29 +0200

When pressing enter with the cursor like this:

def test():
    print("test")
[cursor]

Emacs (26.1) correctly just inserts a blank line. However, with this:

def test():
    if True:
          print("test")
[cursor]

Emacs inserts a blank line and indents it one level. With this:

def test():
    if True:
        if False:
              print("test")
[cursor]

it inserts a blank line and indents it two levels, etc. Moreover, with two methods like this:

def test1():
    if True:
          print("test")

[cursor]def test2():
    if True:
          print("test")

pressing enter will also indent the def block, instead of just inserting the empty line. 

reply via email to

[Prev in Thread] Current Thread [Next in Thread]