Tagged Questions
14
votes
4answers
2k views
Any pointers on using Ropevim? Is it a usable library?
Rope is a refactoring library for Python and RopeVim is a Vim plugin which calls into Rope.
The idea of using RopeVim seems great to me, is there any documentation on "getting started" with RopeVim?
...
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
0answers
27 views
Code autocompletion using ropemacs on opencv python bindings
I'm wondering if there's a get rope-code-assist working on the cv namespace of openCV
import cv2.cv as cv
cv.LoadImage
So far I get [no match]. Is there something else I need to do?
The cv2.pyd is ...
2
votes
1answer
112 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
1answer
196 views
Setting up emacs with autocomplete, python-mode, and rope
I have all of the above installed. Rope seems to work just fine but I get the error below when I try to run auto-complete:
Symbol's function definition is void: rope-completions
I can't figure this ...
2
votes
1answer
111 views
Why does ropevim throw a TypeError?
Whenever I use any function in RopeVim, Vim shows me the following error at the end of the stack trace:
Type error: Got inexpected keyword argument 'verbose'
And I really have got no clue ...
2
votes
2answers
336 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
376 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
3answers
3k 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.
...
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
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
5answers
126 views
How can I replace a class with another class from another module in a lot of files without a lot of manual editing?
Basically, I have a lot of Python classes (representing our database schema) that look something like this:
from foo import xyz, b, c
class bar(object):
x = xyz()
y = b()
z = c()
...
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
2answers
70 views
How to start ropemacs-mode automatically?
When I open a python file I have to manually start ropemacs-mode to get the key bindings each time. I tried adding something like this to automatically start ropemacs:
(add-hook 'python-mode-hook ...