Rob Norris

Results 236 comments of Rob Norris

If you're recompiling anyway I suggest just moving to 0.7.0-M3 if you can. I'd like to get it out soon and there are no [new] issues that I know of.

This seems doable, at the risk of making doc harder to use (right now each page is an independent REPL session, and this would allow symbols to be pulled from...

For now I recommend only generating doc for 2.11 or 2.12

This is as good a time as any to deprecate tut, so that's what I'm inclined to do. Mdoc is the way forward.

It's valid Scala code but as far as the REPL is concerned it's incomplete because it doesn't end with an expression. I guess we could add a flag that suppresses...

There is not an obvious way to do this within tut because the stracktrace is printed by the REPL as a side-effect and we don't know it has happened until...

You'll need to pass this to sbt when you start up (`-J-XX:...` if you're using sbt-extras) because it all runs in-process and this is a JVM option. It's possible that...

I don't know how hard this would be, I haven't looked into it. Things in sbt vary from trivial to near-impossible seemingly at random so it's hard to predict. Feel...

There is some subtlety here because you want to recompile tut files if they have changed **or** if source code they depend on has changed. Otherwise if you change your...

Yeah I thought about generating scala modules for each page and then using the built-in dependency checker to figure out which need recompiling, but I don't know how to do...