On Aug 12 2008 13:37 +0430, Linos wrote: > The file have 1600 lines, i have found the file config.py in my
So probably most of it is the parsing time; if so, it is very hard to enhance since rope uses python's _ast module internally which is implemented in C. > project .ropeproject subfolder, it still have to true the parameters > you have point me to disable but it seems be using a different name to > the same property: > > in my .ropeproject subfolder. > # If `True`, rope analyzes each module when it is being saved. > prefs['automatic_soi'] = False > > in default_config.py in plugin subdirectory. > # If `True`, rope analyzes each module when it is being saved. > prefs['automatic_soa'] = False > > anyway i have set: > prefs['automatic_soi'] = False > prefs['validate_objectdb'] = False Actually automatic_soi was renamed to automatic_soa but both of them work (since you have created your project before this renaming was done it still uses the old name). > in project .ropeproject subfoder and it works great with rope activated now > :), Thanks Ali. Happy to hear that. Regards, Ali _______________________________________________ Eric mailing list [email protected] http://www.riverbankcomputing.com/mailman/listinfo/eric
