Nils Kilden-Pedersen
Nils Kilden-Pedersen
Any status on this? I too am not seeing much syntax coloring. Things like headers are just the same color, which is odd, since the screenshots on the README.md page...
Not just JDK9 Nashorn, also JDK8.
@danielgtaylor Any chance of seeing this merged? Previewing in Atom fails on every other change.
Lack of this feature makes it monumentally painful, if not impossible, to select a few files from a large collection.
@plokhotnyuk I'm running into this issue too. But it's bigger than just using `???` for implementing codecs. E.g. I have certain fields I don't want to emit into the JSON....
Sometimes that's the case, yes. Other times the opposite.
> Why not just use different case classes or codecs for that? Sure, more code can solve almost anything. But it's boilerplate copying of near identical structures, just really bothersome....
Right now, I need to output an ADT content as just a struct, e.g. ```json { "foo": 5, "bar": "BAR" } ``` However, that doesn't seem possible, because the Codec...
E.g. ```scala sealed abstract class Foo case class Bar(a: Int, b: Float) extends Foo case class Baz(x: String) extends Foo ``` So, given a `Seq[Foo]`, I'd like to end up...
Right, I already have a workaround. But should all that code be necessary? I have a sealed trait with over 30 subclasses that I haven't yet gotten to. It should...