I just installed the python-mode in Emacs and it seems to be working well. However, I could not find documentation for the package on the official site.
The package comes with a doc folder where I can see two files:
commands-python-mode.org
commands-python-mode.rst
Both files seem to be formatted for some external tool that displays the help text.
With this:
- Is there a tool I can use to navigate this documentation?
- Does python-mode have an online site with documentation? Any tutorials or good walk-throughs for python-mode for Emacs?
A cursory inspection of those two files and the code tells me that they’re basically a listing of the docstrings found in
pymacs.elandpython-mode.el. That means you’ll be able to access the relevant documentation throughM-x aproposorC-h aand friends (specifically, search for^pyor^pymacsto get a listing of the mode functions).As a general rule, because
elispdoesn’t support namespaces, all functions/variables defined by a given mode will have a consistent prefix related to the name of the mode. That makes it fairly simple to search through the Emacs documentation.