In java, `import foo.bar.Baz` tells me that I can ...
# vim
s
In java,
import foo.bar.Baz
tells me that I can find the
Baz
source code in
…/foo/bar/Baz.java
. However, in Kotlin I might have multiple classes per file, or maybe I'm importing an extension function, it's no longer clear which file I actually have to look in to find the definition. How do you handle this? This is really more of a #codingconventions question, but I suspect I'm going to get a bunch of "it doesn't bother me; I just
<Ctrl-b>
in IntelliJ"
answers, whereas folks here might care more.