Reputation: 27
In eclipse I have the very useful possibility to go back when I navigate throug classes/interfaces.
I don't find this option in Intellij. Any help please ?
Upvotes: 0
Views: 986
Reputation: 1
In IntelliJ (Linux),
Press shift + alt + left key
for navigating backward in your code journey.
Press shift + alt + right key
for navigating forward in your code journey.
Upvotes: 0
Reputation: 522741
There should already be a default keymap for navigating backward in your code journey. Press CTRL + ALT + S, and then select Keymap
from the left hand menu. Then, do a search for back
in the dialog box at the top of the window. Scroll down, and you should see Navigate <= Back
as one of the options. You may see what the current keyboard shortcut is. If you don't like it, and want to change it to something else, you may do so. For navigate back, Intellij defaults to CTRL + ALT + Left Arrow, while Eclipse defaults to just ALT + Left Arrow.
Upvotes: 3