Scala Plugin Links
Other JetBrains Blogs
Meta
Author Archives: Alexander Podkhalyuzin
Scala Language Console (Nika builds)
New scala console comes with build 0.5.89 (http://confluence.jetbrains.net/display/SCA/Scala+Plugin+Nightly+Builds+for+Nika). Now you can use full featured editor for editing code in console (just instead of Enter, use Shift + Enter). For example: And after execution: This comes only with Nika scala plugin … Continue reading
Posted in Uncategorized
6 Comments
IDEA 11 Scala plugin version
Recently we finally published plugin for IDEA 11 (http://plugins.intellij.net/plugin/?idea&id=1347). This post is about current plugin development state. Now we have two major development branches: http://git.jetbrains.org/?p=idea/scala-plugin.git;a=shortlog;h=refs/heads/master http://git.jetbrains.org/?p=idea/scala-plugin.git;a=shortlog;h=refs/heads/IDEA-X Until IDEA 11 release almost all bugfixes will be in both versions. However I’m sure … Continue reading
Posted in Uncategorized
16 Comments
Some Smart Completion
It’s not just “Some Completion”, it’s about scala.Some. In case if you have expected type Option[AnyType] you possibly have something of type AnyType and you want to use it like Some(anyTypeValue). So now you can invoke smart completion two times … Continue reading
Posted in Uncategorized
1 Comment
Global members class name completion in Scala
Recently such functionality was implemented in Java editor. And now it’s also available in the latest nightly build of Scala plugin. This feature is about how to use global names fast. You can invoke Ctrl + Alt + Space (Class … Continue reading
Posted in Uncategorized
1 Comment
Generate anonymous function feature
In Scala, you can use anonymous functions. Now you can generate them automatically in case if it’s method call argument. Lets, for example you have the following code: Then use smart completion (Ctrl + Shift + Space) to see an … Continue reading