Hi there,
I am not sure if the question is asked before. I wonder if there is a way to control SBT’s console to stop automatically printing the results of expressions.
Typically, when I have a List with thousands of elements from some expressions, the console (REPL) usually take some time to print the results until targetting the output limitations. I hope to stop this behavior.
After searching on the internet, some people mentioned that :power
mode under console, but I did not have that (my SBT version is 1.10.0). Others mentioned the scalacOptions += "-Dscala.repl.maxprintstring=0"
. I put it in build.sbt, but does not affect the behaviors in SBT console.
Thanks!