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.
Figured it out:
.emacs
file:
(global-set-key (kbd "C-c a") 'rope-auto-import)
M-x load-file RET ~/.emacs RET