Reputation: 32273
I know the shortcuts to navigate between errors in IntelliJ (F2/shift + F2). But they don't select the text. They just put the cursor at the beginning.
In Eclipse they select it. I like this because then I just have to start typing, or paste something to correct it - which is very useful when there are a lot of errors with the same pattern. Is there a way to reproduce this functionality in IntelliJ?
Upvotes: 0
Views: 48
Reputation: 18931
There's no such shortcut in IntelliJ IDEA, as the number of cases where fixing an error requires replacing some expression is actually far from 100%. You can get similar results by pressing Ctrl+W (Select Word) shortcut after being navigated to an error.
Upvotes: 1