
For those interested, please find the download below:
- The Scala Bundle
- An Example Project (with some sources ripped from scala-lang.org)
The main goal was to have simple syntax highlighting, which actually looks quite good using the 'Cobalt Theme'. (I'm not 100% sure that
value:Type
is always displayed correctly, but it seemed to work with the samples.)Further, there is a template for an Ant-Script which includes a compile, run & deploy task. These can be executed as bundle commands (menu or shortcuts), if the file is called 'build.xml'. Customization should be easy with a few properties at the top of the file.
Finally, there are a few snippets to write new code quickly. E.g. typing
trait ->| Adder ->| def ->| add ->| Int ->| 2 ->| left ->| Int ->| right ->| Int
results in
/**
* Adder
*/
trait Adder
{
def add ( left : Int, right : Int ) : Int
}
without pressing two keys at the same time (no SHIFT)!But of course you can sketch your own (and share them with me =) ) !