aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/progmodes/python.el
diff options
context:
space:
mode:
Diffstat (limited to 'lisp/progmodes/python.el')
-rw-r--r--lisp/progmodes/python.el10
1 files changed, 6 insertions, 4 deletions
diff --git a/lisp/progmodes/python.el b/lisp/progmodes/python.el
index 48d80b99c6a..521f0b5be19 100644
--- a/lisp/progmodes/python.el
+++ b/lisp/progmodes/python.el
@@ -209,11 +209,13 @@
209;; `python-imenu-format-parent-item-jump-label-function' variables for 209;; `python-imenu-format-parent-item-jump-label-function' variables for
210;; changing the way labels are formatted in the tree version. 210;; changing the way labels are formatted in the tree version.
211 211
212;; If you used python-mode.el you probably will miss auto-indentation 212;; If you used python-mode.el you may miss auto-indentation when
213;; when inserting newlines. To achieve the same behavior you have 213;; inserting newlines. To achieve the same behavior you have two
214;; two options: 214;; options:
215 215
216;; 1) Use GNU/Emacs' standard binding for `newline-and-indent': C-j. 216;; 1) Enable the minor-mode `electric-indent-mode' (enabled by
217;; default) and use RET. If this mode is disabled use
218;; `newline-and-indent', bound to C-j.
217 219
218;; 2) Add the following hook in your .emacs: 220;; 2) Add the following hook in your .emacs:
219 221