Tagged Questions
15
votes
1answer
384 views
Is it possible to use Ropemacs with TRAMP in Emacs?
I recently installed the hg tip version of Ropemacs and I'd like to use it when editing remote files using TRAMP. Has anyone done this? When I try to use M-/ to complete a variable name, I am asked to ...
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 ...
6
votes
7answers
868 views
Is there any way to create a “project file” in Emacs?
I say "project file" in the loosest sense. I have a few python projects that I work on with ropemacs using emacs W32 for Windows. What would be ideal is if I could have an icon I could click on on ...
5
votes
2answers
360 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
894 views
Tracking down max-specpdl-size errors in emacs
I've been randomly getting the following error in emacs:
Variable binding depth exceeds max-specpdl-size
...and I've been getting it at very random moments. After researching this, it seems as ...
2
votes
0answers
82 views
Why I can't use auto-complete for python modules in emacs
I have been trying to use emacs as a python IDE, I have tried many step-by-step examples to do it. But I have some trouble for function completion. Now I have auto complete (with tab completion) for ...
2
votes
2answers
84 views
Emacs responds slow: how to profile?
I'm sometimes experiencing some Emacs. Sometimes emacs spends an awful lot of time in saving a file. I haven't quite figured out why and when it happens. It seems to occur when using IPython and ...
2
votes
2answers
328 views
Editing Python in Emacs
I've looked at python-mode and python.el. I'm using python-mode.el. I'm also using rope and ropemacs. I'm looking either for some documentation on these that helps me, or another elisp package or ...
2
votes
1answer
358 views
Rope / Ropemacs - Auto Import feature
I'm using Rope and Ropemacs to transform my emacs as a IDE for Python. I have a problem with rope-auto-import feature. I read in the doc that I must add modules that I want to autoimport like this :
...
1
vote
0answers
61 views
Emacs 24, Rope rename: “calculating rename changes”, then becomes unresponsive
When I use Rope to refactor Python, rename a class name, the minibuffer says "calculating rename changes...", and the machine becomes slow, even not response.
Did I miss any configs, or is it a bug ...
1
vote
0answers
26 views
How to enable autocomplete PyGTK symbols in Emacs?
I have installed ropemacs in emacs and do these instructions:
Edit config of the rope project (using M-x rope-project-config or directly opening .ropeproject/config.py) and replace the line
...
1
vote
0answers
63 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
1answer
155 views
A rather naff limitation of ropemacs encountered with multiple name bindings
I am getting some disappointing completion and go-to-definition results with ropemacs in places where I use multiple name-bindings to the same object.
Considering my contrived and stylistically ...
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
799 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
256 views
How do I do cross-project refactorings with ropemacs?
I have a file structure that looks something like this:
project1_root/
tests/
...
src/
.ropeproject/
project1/
... (project1 source code)
project2_root/
...
0
votes
2answers
59 views
How can I insert new modules in PYTHONPATH?
I'm installing http://bitbucket.org/agr/ropemacs for my emacs.
In README.txt it say:
Note that rope and ropemacs should be in your PYTHONPATH for this
to work.
I check my sys.path python, but there ...
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
127 views
Problem with ropemacs when opening file in jython-mode
I use ropemacs to write python source and here is the related portion of .emacs:
(defun my-python-hook-mode ()
(interactive)
(require 'pymacs)
(autoload 'pymacs-apply "pymacs")
(autoload ...