Emacs config utilizing prelude as a base
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
761 B

  1. # Prelude Python Quickstart
  2. ## Python Mode
  3. Emacs comes with Python programming support through the built-in
  4. Python-mode. Whenever you are editing Python code run `C-h m` to
  5. look at the Python mode key bindings. Alternatively look at the
  6. menu bar entries under Python. To toggle the menu bar press `F12`.
  7. ## Syntax checking
  8. Prelude ships with [Flycheck](https://github.com/flycheck/flycheck),
  9. an on the fly syntax checker. Flycheck has support for two Python
  10. syntax checkers, [Pylint](http://www.pylint.org/) and
  11. [Flake8](http://flake8.readthedocs.org/en/latest/). In
  12. order to have Flycheck support on the fly syntax checking for
  13. Python you need to have either of these installed and accessible to
  14. Emacs. In order to manually choose a checker run `C-c ! s`.