Browse Source

Fix newline after colon inside a list

custom
toctan 11 years ago
parent
commit
0769eb5e7c
  1. 5
      modules/prelude-python.el

5
modules/prelude-python.el

@ -87,8 +87,9 @@
(eldoc-mode)
(setq-local electric-layout-rules
'((?: . (lambda ()
(if (python-info-statement-starts-block-p)
'after)))))
(and (zerop (first (syntax-ppss)))
(python-info-statement-starts-block-p)
'after)))))
(when (fboundp #'python-imenu-create-flat-index)
(setq-local imenu-create-index-function
#'python-imenu-create-flat-index))

Loading…
Cancel
Save