From 1dc037f2f4e1ad192805244e4756b3180d2302c7 Mon Sep 17 00:00:00 2001 From: David Florness Date: Thu, 16 May 2019 11:07:32 -0600 Subject: [PATCH] Install python-docsting M-q doesn't work well in Python docstrings without this. --- lisp/setup-python.el | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lisp/setup-python.el b/lisp/setup-python.el index 75f1ecd..f282713 100644 --- a/lisp/setup-python.el +++ b/lisp/setup-python.el @@ -5,3 +5,7 @@ (use-package pipenv :hook (python-mode . pipenv-mode) :commands (pipenv-activate)) + + +(use-package python-docstring + :hook (python-mode . (lambda () (python-docstring-mode t)))) -- 2.38.4