Tagged Questions
12
votes
2answers
2k views
Python 3 with Emacs
Is there anything that should be done to make GNU Emacs 23.2 work well with Python 3?
How would an ideal environment for development with Python 3 in Emacs look like?
Is there any documentation ...
5
votes
2answers
377 views
How can I use meta-dot (M-.) in python with emacs?
Is there an equivalent of slime for python?
For example, if I position the cursor on foo() and do M-. (jump to definition) I would like to see the source definition of the function foo
This should ...
2
votes
1answer
820 views
Emacs: Pymacs not loading ropemacs with Carbon Emacs
I'm attempting to use Pymacs with rope/ropemacs for flymake syntax checking as described here:
http://www.enigmacurry.com/2009/01/21/autocompleteel-python-code-completion-in-emacs/
When I start ...
1
vote
1answer
34 views
numpy 1.6.1 and python 2.7 along with ropemacs crash code completion
so now that I updated python from 2.7 to 2.7.2 i can no longer invoke rope-code assist in emacs.
import numpy as np
x = np.arange(0, 5, 0.1)
I have the typical rope 0.9.3, ropemode-0.1-rc2, pymacs ...
1
vote
0answers
70 views
Ropemacs does not work under windows environment
I am trying to use Emacs as my Python IDE under win32. I referred to several posts on the Internet and I had yasinppet, auto-complete, pymacs, ropemacs installed on my Emacs. It shows that Emacs will ...
1
vote
3answers
1k views
Load Pymacs & Ropemacs only when opening a Python file?
I use Pymacs to load Ropemacs and Rope with the following lines in my .emacs as described here.
(autoload 'pymacs-load "pymacs" nil t)
(pymacs-load "ropemacs" "rope-")
It however slows down the ...
0
votes
1answer
43 views
Can you pipe ropemacs suggestions to another command?
is there a way of getting the completions suggestions from ropemacs' rope-code-assist (bound to "M-/" in ropemode) to use in another command?
What I'm trying to do is something like this:
(defun ...