Load Pymacs & Ropemacs only when opening a Python file ?
- by Mtgred
I use Pymacs to load Ropemacs and Rope with the following lines in my .emacs as described here.
(autoload 'pymacs-load "pymacs" nil t)
(pymacs-load "ropemacs" "rope-")
It however slowdown the startup of Emacs significantly as it takes a while to load Ropemacs.
I tried the following line instead but that loads Ropemacs everytime a Python file…