scala-ide / scala-worksheet

A Scala IDE plugin for a multi-line REPL (called worksheet)
96 stars 24 forks source link

The new Worksheet wizard should add package declarations. #94

Closed dragos closed 11 years ago

dragos commented 11 years ago

When creating a new worksheet in an existing package, it should add the corresponding package declaration in the initial contents of the worksheet. Suppose the user selected the parent folder to be someproject/src/test/foo, the initial contents should be

package test.foo

object Worksheet {
 ...
}