The way I know to auto-import using rope is to move my cursor to the name I want to import and do M-x rope-auto-import
. I'd like to bind rope-auto-import
to a keyboard shortcut to make this faster.
Asked
Active
Viewed 46 times
1 Answers
1
Figured it out:
- Add the following line to my
.emacs
file:(global-set-key (kbd "C-c a") 'rope-auto-import)
M-x load-file RET ~/.emacs RET

dinosaur
- 3,164
- 4
- 28
- 40