Enables you to run a "cell" (code surrounded by ///
)
///
println("foo")
(0 to 10).foreach(println)
///
Inspired by matlab's cell mode. Also pycharm-cellmode.
- clone this repository
- open Intellij and make a new plugin project (
File > New > IntelliJ Platform Plugin > Scala
- press
Next
and enter ScalaCellMode asProject name
andModule name
. Also set theContent root
at the path of the repo
- Build (
Build > Prepare Plugin Module ... For Deployment
) - Install. Step 3 will result in the creation of an archive(
ScalaCellMode.zip
).File > Settings > Plugins
- press
Install plugin from disk...
and navigate toScalaCellMode.zip
- restart IntelliJ