Bundled Latest Scala Runtime to Scala for NetBeans
I just bundled latest Scala runtime to Scala for NetBeans, the version is 2.7.1.final, this brings two things:
First, you do not need to set SCALA_HOME any more to get whole plugins working. But, you can still set SCALA_HOME to specifying the target Scala version, if so, you should also need to download and unzip source jars to $SCALA_HOME/src;
Second, I'll begin to write some code in Scala instead of Java for Scala plugins. I can evaluate the features of Scala plugins in daily work, find and fix more bugs of plugins.
Posted at 08:54AM May 27, 2008 by dcaoyuan in NetBeans | Comments[9]

Nice, not having to set SCALA_HOME makes it easier to get working out of the box on the mac. Keep up the good work, this is shaping up to beat the eclipse plugin hands down.
Posted by Al McLean on May 28, 2008 at 04:34 PM PDT #
great,
what is Scala's updatecenter link to get the latest version?
Posted by mbien on May 30, 2008 at 08:38 PM PDT #
ah ok found it
Posted by mbien on May 30, 2008 at 08:56 PM PDT #
hey, really really nice work.
some (i hope helpful) feedback:
* println does not get auto-completed
* if a declare a variable val s = "test"
s won't be autocompleted for
System.out.println(s.<hit ctrl+space here>)
* Sys<ctrl+space> won't autocomplete to System
page down/up does not work while choosing from auto complete list.
Posted by poko on May 30, 2008 at 10:11 PM PDT #
"page down/up does not work while choosing from auto complete list." is not working because of the jvi plugin, not because of your plugin. sorry about that
Posted by poko on May 30, 2008 at 10:23 PM PDT #
looks like the autocompletion won't work in the paramater area ie.
val s = "test"
somefunction.add(s.<ctrl+space>) won't autocomplete for string (just for java.lang.Object)
Posted by poko on May 31, 2008 at 11:52 AM PDT #
Hi poko,
The autocomplete feature is under developing, above issues are not solved yet.
Posted by Caoyuan on May 31, 2008 at 12:56 PM PDT #
Hi Caoyuan, I understand that, I just wanted to help you with some feedback.
(is there a bug tracking system where I should report problems?)
I really appreciate your work!!!!!
Posted by poko on May 31, 2008 at 01:44 PM PDT #
Poko,
There is a issue tracking system:
http://www.netbeans.org/issues/buglist.cgi?Submit+query=Submit+query&component=languages&subcomponent=scala
And a wiki page:
http://wiki.netbeans.org/Scala
Posted by Caoyuan on May 31, 2008 at 02:27 PM PDT #