kotlin-language-server
kotlin-language-server copied to clipboard
go to implementations of an specific method
Hi guys, how can I go to the implementations of a specific interface method?

In fact, I can't find the definitions of the method.

Right now, I can navigate to an specific class or interface and I can find the implementations of a class. I also can navigate to an instance method, but, because I use interfaces I can't navigate to the implementation of an specific method
@fwcd can correct me if I'm wrong, but find-implementations is not supported yet. You can relatively easily find by grepping the project with "override fun method_name" though.
I'd love textDocument/implementation support for my projects.
Although, as @kohnish suggested, we can easily search the entire project, having this feature would significantly enhance the code exploration and navigation experience. Are the any plans to work on this feature?