Differences between revisions 15 and 16
Revision 15 as of 2012-09-16 08:07:41
Size: 4620
Editor: OleksandrGavenko
Comment: wiki restore 2013-01-23
Revision 16 as of 2013-04-17 13:45:32
Size: 4409
Editor: caisah
Comment: Fix links
Deletions are marked like this. Additions are marked like this.
Line 1: Line 1:
Line 3: Line 2:


Emacs (the major flavors being [[GnuEmacs|GnuEmacs]] and XEmacs) is a text editor which come with good support for writing Python code. Each has its strengths and weaknesses, but in general either provide very nice environments for the Python programmer.
Emacs (the major flavors being GnuEmacs and XEmacs) is a text editor which come with good support for writing Python code. Each has its strengths and weaknesses, but in general either provide very nice environments for the Python programmer.
Line 9: Line 5:


For stupid historical reasons, [[GnuEmacs|GnuEmacs]] and XEmacs come with different major mode for editing Python code, though both do a fine job of it. Please [[http://mail.python.org/mailman/listinfo/python-mode|get involved]] if you want to help.
For stupid historical reasons, GnuEmacs and XEmacs come with different major mode for editing Python code, though both do a fine job of it. Please [[http://mail.python.org/mailman/listinfo/python-mode|get involved]] if you want to help.
Line 16: Line 9:

* [[EmacsPythonMode|EmacsPythonMode]], a major mode for programming Python in Emacs.
  * Rudimentary completion is implemented on top of [[EmacsPythonMode|EmacsPythonMode]] by [[EmacsPythonCompletion|EmacsPythonCompletion]]
 * EmacsPythonMode, a major mode for programming Python in Emacs.
  * Rudimentary completion is implemented on top of EmacsPythonMode by EmacsPythonCompletion
Line 28: Line 20:
Line 30: Line 21:

Line 33: Line 22:



Line 67: Line 52:

Line 71: Line 54:
Line 73: Line 55:


* [[EmacsWiki:cgi-bin/wiki.pl?SiteMap|The Emacs Wiki]], a good starting place. Look for relevant articles:
  * [[EmacsWiki:cgi-bin/wiki.pl?PythonProgrammingInEmacs|PythonProgrammingInEmacs]].
  * [[EmacsWiki:cgi-bin/wiki.pl?ProgrammingWithPythonDotEl|ProgrammingWithPythonDotEl]].
  * [[EmacsWiki:cgi-bin/wiki.pl?ProgrammingWithPythonModeDotEl|ProgrammingWithPythonModeDotEl]].
 * [[EmacsWiki:http://www.emacswiki.org/emacs/SiteMap|The Emacs Wiki]], a good starting place. Look for relevant articles:
  * [[EmacsWiki:http://emacswiki.org/emacs/PythonProgrammingInEmacs|PythonProgrammingInEmacs]].
  * [[EmacsWiki:http://emacswiki.org/emacs/ProgrammingWithPythonDotEl|ProgrammingWithPythonModeDotEl]].
Line 83: Line 62:
Line 85: Line 63:

[[
CategoryEditors|CategoryEditors]]
CategoryEditors

Emacs

Emacs (the major flavors being GnuEmacs and XEmacs) is a text editor which come with good support for writing Python code. Each has its strengths and weaknesses, but in general either provide very nice environments for the Python programmer.

Tools for Python coders

For stupid historical reasons, GnuEmacs and XEmacs come with different major mode for editing Python code, though both do a fine job of it. Please get involved if you want to help.

Some tools have been written for using Python from Emacs:

  • EmacsPythonMode, a major mode for programming Python in Emacs.

  • python.el, a Python mode which will be included when Emacs 22 is released, with a number of advantages over python-mode.el. For a version with fixes and enhancements (as of 2006-06) and one that works with Emacs 21, see http://www.loveshack.ukfsn.org/emacs.

  • Emacs GUD PDB, support for sourcelevel debugging of Python code in Emacs. (Note: thanx to Ganesan R: Create the following script with the file name as "pdb" in your path so emacs can find pdb and default to filename arguments in the current dirctory: exec python /usr/lib/python2.3/pdb.py "$@")
  • Pymacs(download), an extension for allowing Emacs users to extend Emacs using Python, where they might have traditionally used Emacs LISP. ' There are also PyMacs notes on the Emacs wiki.

  • ropemacs is a plugin for performing python refactorings in emacs. It uses rope library and pymacs.

  • Emacs Language Sensitive Editor (ELSE), an template-based minor mode for Emacs, with templates for Python.

  • OO-Browser, an Emacs class browser for object-oriented languages with support for Python.

  • The emacspeak audio desktop is a speech interface that allows visually impaired users to interact independently and efficiently with the computer. It has editing support for interactive Python development. Features aural highlighting, structured browsing and debugging.

Support for C Python core developers

Both Emacs and XEmacs have support for developers hacking on the Python C code itself. If you're developing Python 2.x, just use the standard python style that comes with c-mode. If you're hacking on Python 3.x, you'll want to add the following code to your .emacs file (given by Georg Brandl):

(c-add-style
  "python-new"
  '((indent-tabs-mode . nil)
    (fill-column      . 78)
    (c-basic-offset   . 4)
    (c-offsets-alist  . ((substatement-open . 0)
                         (inextern-lang . 0)
                         (arglist-intro . +)
                         (knr-argdecl-intro . +)))
    (c-hanging-braces-alist . ((brace-list-open)
                               (brace-list-intro)
                               (brace-list-close)
                               (brace-entry-open)
                               (substatement-open after)
                               (block-close . c-snug-do-while)))
    (c-block-comment-prefix . "* "))
  )

;; This is a very crude hook that auto-selects the C style depending on
;; whether it finds a line starting with tab in the first 3000 characters
;; in the file
(defun c-select-style ()
   (save-excursion
     (if (re-search-forward "^\t" 3000 t)
         (c-set-style "python")
       (c-set-style "python-new"))))
(add-hook 'c-mode-hook 'c-select-style)

Note: We should try to get the style into upstream c-mode.

Other resources


CategoryEditors

EmacsEditor (last edited 2016-02-12 22:31:29 by OleskandrGavenko)

Unable to edit the page? See the FrontPage for instructions.