Define local Scripted plugin keys in Global scope

This commit is contained in:
Dale Wijnand
2018-03-06 11:54:11 +00:00
parent d26085155d
commit b9e3d6aa2d
2 changed files with 3 additions and 5 deletions
+3 -4
View File
@@ -13,11 +13,10 @@ object ScriptedPlugin extends sbt.AutoPlugin {
}
import autoImport._
import Scripted._
override def projectSettings = Seq(
override def globalSettings = super.globalSettings ++ Seq(
scriptedBufferLog := true,
scriptedPrescripted := { _ =>
}
scriptedPrescripted := { _ => },
)
}