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
Roman Golyshev
02/22/2024, 1:00 PM
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