Rope / Ropemacs - Auto Import Feature

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?

+4
source share
1 answer

I miss the same function, but unfortunately it is not possible to specify rope / ropemacs to enable autoimport for all modules. You must manually add the modules to the variable ropemacs-autoimport-modules .

See the latest posts on this topic: http://groups.google.com/group/rope-dev/browse_thread/thread/6d4778e7bedc096d

+3
source

Source: https://habr.com/ru/post/1333338/


All Articles