When implementing an interface in a Kotlin class:
When I press Alt+Enter on ClassName I can have the IDE add an interface's functions via 'implement members'.
It's kind of annoying that in Kotlin these functions are added at the top of the class. I would like them to be added at the end of the class (just like in Java).
How can I do that?