Related questions
Intellij reformat on file save
I remember seeing in either IntelliJ or Eclipse the setting to reformat (cleanup) files whenever they are saved. How do I find it (didn't find it in the settings)
Enabling IntelliJ's fancy ≠ (not equal to) operator
I witnessed this in the GOTO 2016 • Kotlin - Ready for Production conference by Hadi Hariri.
In some of his code, what would normally look like:
if (x != y) { /* do some stuff */ }
Is being displayed in an elegant style:
if (x ≠ …