I use Rope and Ropemacs to convert my emacs as an IDE for Python. I have a problem with rope-auto-import function. I read in the document that I have to add the modules that I want to auto-import as follows:
(setq ropemacs-autoimport-modules '("os" "shutil"))
But I want to automatically import all modules installed on my computer. How can I indicate this?
source share