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 (lambda ()
                               (ropemacs-mode)
                               ))

But it seems to break flymake. What am I doing wrong here?

link|improve this question

65% accept rate
No need for a lambda; just use 'ropemacs-mode. – Phob Aug 19 '11 at 17:21
feedback

2 Answers

Dont use ropemacs but the readme says like this

After installing pymacs, add these lines to your ~/.emacs file::
(require 'pymacs)
(pymacs-load "ropemacs" "rope-")

link|improve this answer
I have that in my init.el. I can access all the ropemacs functions by typing out M-x rope-*, but the minor mode is not loaded. – Ranjit Aug 17 '11 at 17:22
feedback

My problem was with some code for using autocomplete.el along with ropemacs and yas which I found here:

http://hide1713.wordpress.com/2009/01/30/setup-perfect-python-environment-in-emacs/

Once I commented out the block relating to autocomplete everything else started working as expected.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.