Is it possible to color distinguish `data class`es...
# intellij
u
Is it possible to color distinguish `data class`es differently in the IDE? I only see
Class
which colors everything I want to distinguish data from "real" reference types. Especially when `when`ing over a sealed class of data classes, i.e.
Copy code
when (foo) {
   is Foo -> ..
   is Bar -> ...
}
the
Foo
and
Bar
to be a different color
r
There seems to be no such possibility with the default highlighting settings, unfortunately I see that you have already created an issue, thank you 🙏 Reposting it here for the reference: https://youtrack.jetbrains.com/issue/KTIJ-28881
u
yea, thanks for being so thorough
👍 1