I send
:disable-index-on-startup nil
to the Ensime server and see in the log file:
Configuration Format Error: Expecting a nil or t value at key:
:disable-index-on-startup
Should ProjectConfig.scala be changed from:
def getBool(m: KeyMap, name: String): Boolean = m.get(keyword(name))
match {
case Some(TruthAtom()) => true
case None => false
case _ => matchError("Expecting a nil or t value at key: " + name);
false
}
to:
def getBool(m: KeyMap, name: String): Boolean = m.get(keyword(name))
match {
case Some(TruthAtom()) => true
case Some(NilAtom()) => false
case None => false
case _ => matchError("Expecting a nil or t value at key: " + name);
false
}
Richard
--
Quis custodiet ipsos custodes