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.
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
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
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