• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1=============
2Emacs support
3=============
4
5If you want to edit Python code in Emacs, you should download python-mode.el
6and install it somewhere on your load-path.  See the project page to download:
7
8    https://launchpad.net/python-mode
9
10While Emacs comes with a python.el file, it is not recommended.
11python-mode.el is maintained by core Python developers and is generally
12considered more Python programmer friendly.  For example, python-mode.el
13includes a killer feature called `pdbtrack` which allows you to set a pdb
14breakpoint in your code, run your program in an Emacs shell buffer, and do gud
15style debugging when the breakpoint is hit.
16
17python-mode.el is compatible with both GNU Emacs from the FSF, and XEmacs.
18
19For more information and bug reporting, see the above project page.  For help,
20development, or discussions, see the python-mode mailing list:
21
22    http://mail.python.org/mailman/listinfo/python-mode
23
24
25..
26   Local Variables:
27   mode: indented-text
28   indent-tabs-mode: nil
29   sentence-end-double-space: t
30   fill-column: 78
31   coding: utf-8
32   End:
33