What is the shortcut to find next occurrence of a word in IntelliJ IDEA?

intellij-idea, keyboard-shortcuts

Solution

First you'll have to highlight a symbol by pressing Ctrl+Shift+F7.

Then you just press F3 or Shift+F3 no navigate between the highlighted symbols.

When done you press Esc to exit the highlight searching.

It is all described on Highlightning Usages in IntelliJ Web Help.

Problem

In Eclipse the keyboard shortcut to find next occurrence of a word in a file was `Ctrl + k` . It finds the occurrence of the selected word in a file one by one in a loop. What is the equivalent keyboard shortcut for IntelliJ IDEA? If not can we configure it some how?

Original source