X-Git-Url: http://gitweb.michael.orlitzky.com/?p=emacs.d.git;a=blobdiff_plain;f=mode-hooks%2Fpython-mode-hooks.el;h=32cf30fb9617804b9f7e87504d0e3d19e2868e11;hp=91b73f47c81aff542e5196b43049dddafeaf28a3;hb=cf5775ba8cc0672bf5f37c6be9e0165f186bcf23;hpb=07d1318926f05efe53e610bb35879263368c4b61 diff --git a/mode-hooks/python-mode-hooks.el b/mode-hooks/python-mode-hooks.el index 91b73f4..32cf30f 100644 --- a/mode-hooks/python-mode-hooks.el +++ b/mode-hooks/python-mode-hooks.el @@ -3,6 +3,11 @@ ;; file in a temporary location and usually fails, crapping all over ;; 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) )