Your comments

Yep, they still didn't fix this for ST3. Nerve wrecking because it's totally random.

I use AppleScript (OS X) to open a project file and my workaround was to first activate ST, wait 2 seconds (I found it was the minimum for ST to be "ready") and then open the project.


From


do shell script "'/usr/local/bin/subl' '~/Documents/Sublime Text/project.sublime-project'"
to

tell application "Sublime Text" to activate
delay 2
do shell script "'/usr/local/bin/subl' '~/Documents/Sublime Text/project.sublime-project'"

-------------
-Damazio