Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

ideavim how to navigate to declaration / implementation of a method?

I was reading: http://ideavim.sourceforge.net/vim/quickref.html . When my cursor is on a method how do I navigate to its declaration / impelementation (like ctrl-b in normal mode) I tried gd but it did not do anything.

like image 265
Jas Avatar asked Jan 05 '14 08:01

Jas


People also ask

How do I navigate to implement a method in IntelliJ?

Go to implementation To navigate to the super method, press Ctrl+U . To navigate to the implementation, press Ctrl+Alt+B .

How do I get to implementation method in IntelliJ Mac?

You can use ⌘B (macOS), or Ctrl+B (Windows/Linux), to navigate to an implementation. If a method has multiple implementations, IntelliJ IDEA will list them, so you can choose the one that you want. If there is only one implementation, IntelliJ IDEA will take you straight to it.

How do I open IntelliJ implementation file?

Press Ctrl+F12 or choose Navigate | Implementation(s) from the main menu . Alternatively, you can press Ctrl+Shift+A , start typing the command name in the popup, and then choose it there.

What is IdeaVim plugin?

IdeaVim is a Vim emulation plugin for IntelliJ Platform-based IDEs.


1 Answers

I've noticed that 'gd' seems to go to the declaration.

like image 81
Henry Crutcher Avatar answered Sep 28 '22 12:09

Henry Crutcher