[Python-mode] python.el (from gnu emacs) vs python-mode.el

2011-10-22 Thread Brendan Miller
What features does python-mode.el have above the version of python.el that is included in GNU emacs? How do they compare? I recently tried to get ipython.el working, and found it had a dependency on python-mode.el... This has prompted me to wonder what the real differences between these modes are.

Re: [Python-mode] paredit-like mode

2011-12-02 Thread Brendan Miller
The mode you are looking for is called autopair: http://code.google.com/p/autopair/ Kind of a scaled back paredit that works with any language. On Wed, Nov 30, 2011 at 3:25 PM, Andrea Crotti wrote: > I like paredit-mode when I write in elisp, but unfortunately for python > is not perfect, is there

Re: [Python-mode] How to configure autocompletion?

2011-12-03 Thread Brendan Miller
M-TAB does does smart autocompletion in emacs. It looks you you must (require 'pycomplete) in python-mode.el. http://bazaar.launchpad.net/~python-mode-devs/python-mode/python-mode/view/head:/completion/pycomplete.py It looks like both python.el and python-mode.el only do autocompletion on objects

Re: [Python-mode] How to configure autocompletion?

2011-12-04 Thread Brendan Miller
On Sat, Dec 3, 2011 at 11:31 PM, Andreas Röhler wrote: > Am 03.12.2011 22:58, schrieb Brendan Miller: > >> M-TAB does does smart autocompletion in emacs. >> > > would call that rather completion, while auto-completion starts by > themselves - just auto > > B