# IntelliJ IDEA navigation in this scenario in Kotlin language

**URL:** https://discuss.kotlinlang.org/t/intellij-idea-navigation-in-this-scenario-in-kotlin-language/20844
**Category:** Support
**Created:** [February 11, 2021, 10:40pm UTC](https://discuss.kotlinlang.org/t/intellij-idea-navigation-in-this-scenario-in-kotlin-language/20844 "2021-02-11T22:40:28Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![kamil121214241234](https://avatars.discourse-cdn.com/v4/letter/k/22d042/32.png) [@kamil121214241234](https://discuss.kotlinlang.org/u/kamil121214241234)
#### Post date: [February 11, 2021, 10:40pm UTC](https://discuss.kotlinlang.org/t/intellij-idea-navigation-in-this-scenario-in-kotlin-language/20844/1 "2021-02-11T22:40:28Z")

</div>

**To clarify what I mean i added code here:**

**[GitHub - KamilWitkowski7/kotlindemo](https://github.com/KamilWitkowski7/kotlindemo)**

**What i would like to see is navigation from line:**

**com/example/demo/Example.kt:14**

on

> handle

**straight to:**

**com/example/demo/TestCommandHandler.kt:7**

**Without choosing the handler from the list.**

What I am seeing right now when used for example `ctrl` click is navigation to:

_CommandHandler#handle_

What’s more if i click the “interface” then I will see some irrelevant CommandHandlers like:

**OtherCommandHandler**

irrelevant cause we navigated from context where there was

testCommandHandler: CommandHandler\< **TestCommand** , Unit\>)

**Ctrl-alt-b** shows all usages of it - consider the scale of this example.

What if there were like 1000 CommandHandlers and you are suggesting me all of them ?

What i need is to navigate to one and only good CommandHandler in this context.

To navigate to

TestCommandHandler
