In emacs Python mode, how do I set a different auto-fill width for docstrings and code? -
In emacs Python mode, how do I set a different auto-fill width for docstrings and code? -
i have auto-fill set 79 columns code sections , 72 docstrings automatic pep8 compliance. there seems alternative lisp mode (emacs-lisp-docstring-fill-column) not python.
is there enhanced python-mode.el around somewhere includes this?
current python-mode.el provides
(defcustom py-docstring-fill-column 72 [...] (defcustom py-comment-fill-column 79 [...]
while code value of fill-column
used.
python emacs docstring pep8 autoformatting
Comments
Post a Comment