all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Florian Weimer <fw@deneb.enyo.de>
To: help-gnu-emacs@gnu.org
Subject: python-mode's broken indentation behavior
Date: Sun, 28 Jun 2015 21:47:03 +0200	[thread overview]
Message-ID: <87y4j37gzs.fsf@mid.deneb.enyo.de> (raw)

Indentation in python-mode has been fairly broken for me, I believe
since Emacs 24.  The electric colon makes this especially annoying.

In the following, _ marks the position of point.

If I press RET here:

def foo(x):
    if x:
        return 2
    else:
        raise Foo_

I get this, which is correct.

def foo(x):
    if x:
        return 2
    else:
        raise Foo
    _

Continuing typing:

def foo(x):
    if x:
        return 2
    else:
        raise Foo
    for i in range(0, 10)_

So far, so good.  Now press ‘:’:

def foo(x):
    if x:
        return 2
    else:
        raise Foo
        for i in range(0, 10):_

Going from:

def foo(x):
    if x:
        x()
    else:
        y()
    for i in range(0, 10)_

to:

def foo(x):
    if x:
        x()
    else:
        y()
        for i in range(0, 10):_

is equally unhelpful.

For me, this makes editing Python scripts with Emacs a fairly painful
experience.

Surely this is a known issue because it has been around for so long.
Is this the behavior the python-mode maintainers prefer?  I find this
hard to believe.


             reply	other threads:[~2015-06-28 19:47 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-06-28 19:47 Florian Weimer [this message]
2015-06-29  1:23 ` python-mode's broken indentation behavior Ian Zimmerman
2015-06-29  1:31 ` Stefan Monnier
2015-06-29  2:55 ` Jude DaShiell
2015-06-29 19:29 ` John Mastro
     [not found] ` <mailman.5883.1435541016.904.help-gnu-emacs@gnu.org>
2015-06-29 19:33   ` Florian Weimer
     [not found] ` <mailman.5885.1435541477.904.help-gnu-emacs@gnu.org>
2015-06-29 19:42   ` Florian Weimer
2015-06-30 13:40     ` Stefan Monnier

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=87y4j37gzs.fsf@mid.deneb.enyo.de \
    --to=fw@deneb.enyo.de \
    --cc=help-gnu-emacs@gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.