Reputation: 5088
Is there an equivalent of Ctrl + Shift + L (show shortcut references) from Eclipse in IntelliJ IDEA?
I am switching to it from Eclipse but I have to check the keymaps frequently and I would like to have access to the quick reference of shortcuts instead of opening the settings to do it.
Upvotes: 4
Views: 3332
Reputation: 116
I usually use "Shift Shift" that it searc everywhere shorcuts included. So for example if I need to search "Optimize import" I do Shift Shift and write "import" or "optimize" and it appear.
Upvotes: 0
Reputation: 3
The correct answer is Ctrl+Shift+F to search text everywhere in the project.
Upvotes: 0
Reputation: 1
I think Ctrl + Shift + L (show shortcut references) from Eclipse must do "Introduce variable..." In Idea it is Alt + Shift + V or with menu Refactor/Introduce variable... May be useful to somebody(begginers like me :) ).
Upvotes: 0
Reputation: 5101
Learning shortcuts: I switched from Eclipse, too. Initially I started with the Eclipse key bindings, but then decided to switch completely. I used KeyPromoter for about 2 days, it is annoying but increases the learning curve heavily. Help->Find Action...
(Ctrl+Shift+A) helps, too.
Reference card: After that I printed my own shortcut reference. Took one hour, but it was worth the time, because I have adapted some shortcuts and some shortcuts are displayed incorrectly in IntelliJ Idea. Here's a Word template.
Upvotes: 1
Reputation: 17
Command + Shift + A displays a field that performs a search on an action or option name. Shortcuts along with their corresponding keymap are displayed during the search.
Upvotes: 0