Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

In Scala, I frequently have to import multiple packages worth of implicits and other utilities, particularly on the REPL:

import scala.collection.JavaConversions._
import scala.collection.{mutable => mut}
import com.myapp.db._
import com.orm._
val con = connectDb(...)
...

I understand there's no way to import multiple packages in Scala (though package object scopes can help a bit), but what about from the REPL? Is there any way to do this from the REPL without lots of copying and pasting? I also tried using :load, but things imported/created there don't get introduced into the REPL's scope either. I noticed that the :power command does import things into scope.

Update: :load actually does work.

share|improve this question
1  
What do you mean "but things imported/created there don't get introduced into the REPL's scope either" when using :load? Seems to work fine for me for imports and objects... – huynhjl Aug 6 '11 at 2:05
You're right - I mistakenly tried mut.<TAB> and thought the lack of completions meant nothing was being imported. – Yang Aug 7 '11 at 7:34

1 Answer

up vote 1 down vote accepted

I'm not sure of a general solution, but in SBT it's possible to configure the project so that the console (REPL) runs some initial commands upon launching. Here's an excerpt from an example build.sbt file,

// set the initial commands when entering 'console' only
initialCommands in console := "import myproject._"

Edit: Another reference is the Scalala project. They have a Scala program that launches an embedded REPL and fills in the necessary imports. For usage, see their quick-start guide.

share|improve this answer
1  
Also note that you can create a script that uses SBT to invoke REPL with a particular configuration. See SBT 0.10's wiki about scripts. – Daniel C. Sobral Aug 6 '11 at 1:03
@Daniel Sweet! Do you know if you can use SBT to launch non-REPL applications? – Kipton Barros Aug 6 '11 at 1:14
1  
You can use it to launch Scala scripts -- there's an example on the very same page I mentioned, the scripts page on xsbt wiki. – Daniel C. Sobral Aug 6 '11 at 15:54
initialCommands doesn't work for me in the way I specified in the question - the lines get executed, but the symbols aren't actually introduced into the REPL scope. Marked your answer as accepted anyway though, since :load actually does work. – Yang Sep 30 '11 at 20:00

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.