Tagged Questions
15
votes
1answer
392 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
885 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
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
114 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
337 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
377 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 :
...
2
votes
1answer
821 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
1answer
84 views
Emacs + Rope + Python produces lisp error
I'm trying to use Ropemacs with AutoComplete in Emacs but I keep getting a Debugger error:
Debugger entered--Lisp error: (void-function rope-completions)
(rope-completions)
...
1
vote
0answers
74 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
32 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
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 ...
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
68 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
139 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 ...