I noticed the worksheet slows down to a crawl when ScalaLaunchDelegate is open (in the sdt.core project). There are two issues at play, one of them can be fixed in the worksheet:
that file sends the presentation compiler into a long journey to find implicits
the worksheet calls askReload on each keystroke, and then waits for it to be serviced.
The second one can be fixed by not waiting for the reload request to be serviced.
I noticed the worksheet slows down to a crawl when
ScalaLaunchDelegate
is open (in thesdt.core
project). There are two issues at play, one of them can be fixed in the worksheet:askReload
on each keystroke, and then waits for it to be serviced.The second one can be fixed by not waiting for the
reload
request to be serviced.