Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

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
359 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 ...
4
votes
1answer
982 views

Pymacs error starting Emacs after installing Python

I installed python using one of the msi files. But when I start up emacs, it gives me: Problem 1, which I thought I'd fixed When I run cmd and type in python, I get "python" is not recognized as an ...
2
votes
1answer
271 views

python code completion in Emacs

I tried make PythonIDE using emacs like in this article http://www.enigmacurry.com/2009/01/21/autocompleteel-python-code-completion-in-emacs/ But emacs said me "auto-complete-mode not enabled". It is ...
1
vote
0answers
62 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
193 views

Pymacs lisp version rarities

I am running Ubuntu Natty and install Emacs and pymacs and ropemacs all from the repos. So when I add to my .emacs file the script to load ropemacs and pymacs I get the following error: File mode ...
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 ...
1
vote
1answer
797 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
371 views

Python to drive Emacs; pymacs doesn't work

I've got a python script that loops indefinitely waiting for input, and then does something when the input happens. My problem is then making python tell emacs to do something. I just need some way ...
1
vote
3answers
2k views

pymacs: General question and Installation problem

I am trying to setup emacs for python development. From what I read, it is recommended to use python-mode.el rather than the default python.el from Emacs 22.3. So I embark on the new adventure. ...
0
votes
1answer
42 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 ...
0
votes
1answer
292 views

running matplotlib or enthought.mayavi.mlab from a py-shell inside emacs on windows

I can run the following code fine from a regular cmd shell: import matplotlib.pyplot as plt fig = plt.figure() plt.show()It launches a matplotlib window. However, running inside emacs using shell or ...