Steven
Steven

Reputation: 329

What's the equivalent of Alt-left/right arrow key like Eclipse in IntelilJ?

In Eclipse you can use alt+<- or -> to move between places you were. What is the equivalent in Intellij?

Upvotes: 31

Views: 17243

Answers (7)

Akhilesh
Akhilesh

Reputation: 1410

This is a two step process

  1. Enable the Toolbar using View -> Appearance -> Toolbar
  2. Right click on Toolbar (It would have appeared on Top) , Add to Main Toolbar (Back and Forward icons)

Upvotes: 0

Rohit Singhal
Rohit Singhal

Reputation: 49

We can also change default shortcuts option to eclipse shortcuts option - File -> Settings -> Keymap -> select Eclipse in the dropdown.

Upvotes: 1

Hashim Otto
Hashim Otto

Reputation: 416

I confirmed it's ++() on Mac OS X.
Command + Option + Left(Right)

Just for additional information.

Upvotes: 11

krionz
krionz

Reputation: 447

Well, I'm using Ubuntu 18.04 and Intellij IDEA Community Edition 2020.1.3 and i could only make the navigation work by using: ALT+SHIFT+ or ALT+SHIFT+

Upvotes: 0

NoNaMe
NoNaMe

Reputation: 6222

I got this from IntelliJ site, I'm sure it will be helpful:

To navigate backwards, press +[. To navigate forward, press +].

To navigate to the last edited location, press ++.

To find the current caret location in the editor, press Ctrl+M. This action might be helpful if you do not want to scroll through a large file.

However, you can press the and arrow keys to achieve the same result.

To highlight a word at the caret you are trying to locate, select Edit | Find | Next Occurrence of the Word at Caret from the main menu.

To see on what element the caret is currently positioned, press ++Q.

To move caret between matching code block braces, press +M.

To navigate between code blocks, press ++[ or ++].

Upvotes: 0

Stefan Dollase
Stefan Dollase

Reputation: 4620

It is Ctrl+Alt+ and Ctrl+Alt+. See this help page.

Upvotes: 34

Mahboob Ali
Mahboob Ali

Reputation: 165

I would suggest just go and select eclipse shortcuts option instead of default provided by IntelliJ idea ide

Upvotes: 3

Related Questions