all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: John Mastro <john.b.mastro@gmail.com>
To: Florian Weimer <fw@deneb.enyo.de>,
	"help-gnu-emacs@gnu.org" <help-gnu-emacs@gnu.org>
Subject: Re: python-mode's broken indentation behavior
Date: Mon, 29 Jun 2015 12:29:02 -0700	[thread overview]
Message-ID: <CAOj2CQSvAPvrm2CWSxrVvdGq-tDTRoZtiEkQshDXOXcVTDLLCg@mail.gmail.com> (raw)
In-Reply-To: <87y4j37gzs.fsf@mid.deneb.enyo.de>

Florian Weimer <fw@deneb.enyo.de> wrote:
> Indentation in python-mode has been fairly broken for me, I believe
> since Emacs 24.  The electric colon makes this especially annoying.

I find the indentation engine to be quite good overall, but use
something like the following to prevent the colon issue:

(defun no-electric-colon ()
  (setq-local electric-indent-chars (remq ?: electric-indent-chars)))

(with-eval-after-load 'python
  (add-hook 'python-mode-hook #'no-electric-colon))

Hope that helps

-- 
john



  parent reply	other threads:[~2015-06-29 19:29 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-06-28 19:47 python-mode's broken indentation behavior Florian Weimer
2015-06-29  1:23 ` Ian Zimmerman
2015-06-29  1:31 ` Stefan Monnier
2015-06-29  2:55 ` Jude DaShiell
2015-06-29 19:29 ` John Mastro [this message]
     [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=CAOj2CQSvAPvrm2CWSxrVvdGq-tDTRoZtiEkQshDXOXcVTDLLCg@mail.gmail.com \
    --to=john.b.mastro@gmail.com \
    --cc=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.