5

I often edit Python code in my Emacs and have it set up to display Python files in Python mode. I often find myself formatting dosctrings as ReStructured Text and I was thinking that it would be great if I could have Emacs show these docstrings as in ReST mode. Is this possible somehow?

Thomas Arildsen
  • 989
  • 2
  • 10
  • 18

1 Answers1

4

You can try this minor mode

https://github.com/glyph/python-docstring-mode

with that conf:

(add-to-list 'load-path "/path/to/python-docstring-mode-master")
(require 'python-docstring)
(add-hook 'python-mode-hook (lambda () (python-docstring-mode t)))
djangoliv
  • 181