]> gitweb.michael.orlitzky.com - emacs.d.git/commitdiff
mode-hooks/python-mode-hooks.el: use "django" style docstrings.
authorMichael Orlitzky <michael@orlitzky.com>
Wed, 12 Feb 2020 14:16:07 +0000 (09:16 -0500)
committerMichael Orlitzky <michael@orlitzky.com>
Wed, 12 Feb 2020 14:16:07 +0000 (09:16 -0500)
mode-hooks/python-mode-hooks.el

index 32cf30fb9617804b9f7e87504d0e3d19e2868e11..9c3cf70d77a3f66107769c6a4553fb692a61373e 100644 (file)
@@ -4,10 +4,10 @@
   ;; my minibuffer in the process.
   (eldoc-mode 0)
 
-  ;; Don't format python docstrings according to any particular convention.
-  ;; The fill-paragraph function should word-wrap the docstring, but should
-  ;; not (for example) delete the line break after the triple quotes.
-  (setq python-fill-docstring-style nil)
+  ;; Use "django" style for python docstrings. This ensures that the
+  ;; leading triple quotes remain on their own line when you paragraph-
+  ;; fill the first paragraph of the docstring.
+  (setq python-fill-docstring-style 'django)
 )