Rope is a python refactoring library that is useful for renaming or restructuring python classes / methods / variables / constants
0
votes
0answers
26 views
Pymacs only root starting
If I start Emacs as root. Pymacs work fine.
But starting as normal user:
error: Pymacs helper did not start within 30 seconds
$ python
Python 2.7.3 (default, Sep 26 2012, 21:51:14)
>>> ...
2
votes
2answers
61 views
Is there any way to replicate a memory can't be read error message in my C# application?
This is one of those problems that make you want to find a nice piece of rope. This problem is more annoying than a brother-in-law stops by unannounced wanting to borrow money.
Let me state upfront ...
2
votes
2answers
74 views
convert python print statements to logging
I'm working on a large codebase that uses print statements for logging rather than python logging. I'm wondering if there is a recommended for converting all these print statements to calls to ...
1
vote
2answers
160 views
Emacs Extension for Python Auto Complete
I'm looking for an extension which will help in Python's auto complete feature in Python.
If I type the following code:
a = [4,5,6]
a.p
Then I expect it would give me a suggestion for pop as it is ...
1
vote
0answers
244 views
vim code completion and PyDoc problems
Unfortunately, I am not able to get os.path.join as code completion only os.path. The other problem is that pydoc is not open automatically in a new window above the source code. How is it possible to ...
1
vote
0answers
199 views
How to draw a twisted rope with opengl [closed]
How to draw a twisted rope in OpenGL like this?
I'm trying to use GL_QUADS, but failed because I can't find a proper math equation to calculate vertex points.
0
votes
1answer
88 views
rope-auto-import did not work
virtualenv env
pip install -e git+https://github.com/pinard/Pymacs.git@v0.24-beta2#egg=Pymacs-dev
pip install -e hg+https://bitbucket.org/agr/rope#egg=rope-dev
pip install -e ...
1
vote
0answers
62 views
Emacs to autocomplete all imported module functions
I have been using rope, ropemacs and pymacs for my autocompletion. It does pretty well, but I noticed that there is some limitation to the amount of completion it aids in. It only seems to complete ...
3
votes
1answer
414 views
Using ropemacs for autocompletion with python.el in Emacs
How do I set up auto-complete to use ropemacs with python.el in Emacs 24?
I have the following in my .emacs file
; Auto-complete:
; --------------------------
(add-to-list 'load-path ...
2
votes
1answer
279 views
The rope data structure
I was reading about the rope data structure.I am interested in building a text editor using C++ and Qt. My question is: Does built-in string manipulating functions in programming languages like C++ ...
1
vote
1answer
122 views
Remove *args and **kwargs from method signatures using rope
I'm using eric4 and its rope plug-in to refactor some code.
I have many method whose signatures use the *args and **kwargs syntax.
I'd like to change these signatures an remove this parameters.
I've ...
0
votes
1answer
83 views
Jumping to Python library sources with epy/emacs
I am using epy/ropemacs for my python project. "C-c g" (rope-goto-definition) works fine if the target is my source file. But it doesnt jump to third party source files. What I want to be able to do ...
5
votes
1answer
172 views
How to make ropemacs faster in emacs?
I'm using ropemacs and company-mode for code completion in emacs.
However, I oftern found ropemacs slow, for example, when I type in
import os
os.
Then ropemacs will try to do the completion for ...
0
votes
1answer
344 views
how to attach a body to a rope and making it swing to another rope
I've set some ropes (using cocos2d and box2d) and would like to attach a body to one rope in such a way that it can swing to another rope. I am not sure how to go about this.
5
votes
1answer
419 views
Can Rope auto-completion (RopeCodeAssist) in vim not automatically insert results?
I am using Rope for my python auto-completion in vim. However, one thing that annoys me is that it auto-inserts its suggestions, making me unable to narrow down choices by continuing to type. This ...
33
votes
2answers
870 views
Managing helper death
I had installed Pymacs, rope, ropemode, ropemacs, and when I executed pymacs-terminate-servicesby accident, I couldn't save modified buffers. It first asked me - The Pymacs helper died. Restart it? ...
1
vote
1answer
668 views
Rope and Yasnippet in Emacs
I setup python support for emacs using rope and yasnippet by following the tutorial given at http://www.enigmacurry.com/2009/01/21/autocompleteel-python-code-completion-in-emacs/#disqus_thread.
I ...
2
votes
0answers
189 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 ...
3
votes
2answers
480 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)
...
3
votes
1answer
2k views
Rope in cocos2d & box2d
all! I'm creating a game based on Box2d and Cocos2d. I want to make up a rope, which will be able to contact with all of the physical objects. Something like this:
http://rghost.ru/35987917.view
I ...
3
votes
1answer
410 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 ...
0
votes
2answers
250 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 ...
1
vote
0answers
211 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 ...
4
votes
1answer
874 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
2answers
296 views
SGI STL Rope in g++?
It seems that there is a implementation of rope in my /usr/include/c++/4.5.1/ext/rope (and ropeimpl.h). I compared it with SGI STL and the code seems to be pretty much the same codebase.
I'm not ...
2
votes
1answer
222 views
How to load ropevim only when editing Python files
I'm using ropevim for some operations on Python files, and vimclojure for Clojure files and REPL.
VimClojure only loaded when editing Clojure files, but ropevim loaded for every file, and this addons ...
0
votes
2answers
199 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 ...
2
votes
1answer
234 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 ...
0
votes
1answer
71 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 ...
4
votes
3answers
663 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 ...
19
votes
4answers
4k 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?
...
3
votes
1answer
760 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 the rope-auto-import feature. I read in the doc that I must add modules that I want to autoimport like ...
7
votes
2answers
1k 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
5answers
165 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()
...
3
votes
1answer
294 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/
...
5
votes
3answers
4k 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.
...

