Sublime Forum

Extremely long start up time

#1

Hi, I am experiencing extremely long ST2 2203 start-up times on Mac OS X 10.7.4. My suspicion is that it’s a package but I might be wrong. Is there a way to check how much time each package needs during startup? Of course, I can try disabling packages and restarting. But with the current situation that is going to take pretty long…

Thanks!

0 Likes

#2

the console on startup says the amount of time plugins take from load.

Open “instalationfolder\Sublime Text 2\sublime_plugin.py”

There look for

print "Reloading plugin", fname

Change it to

print "Reloading plugin", fname start = time.time();

At the bottom of that function…

print time.time() - start

Maybe you have a very big or buggy “C:…\Sublime Text 2\Settings\Session.sublime_session”,

try deleting that file.

0 Likes

#3

Also, check the console at startup, and look for messages along these lines:

plugin init time: 0.288352
startup time: 0.88925 (package setup was not run)
0 Likes