In Eclipse you can turn on \"Mark Occurrences\", and then it will highlight every occurrence of a given variable in the current scope. That\'s great, but I\'d really like to mo
You can do this to maybe reduce some keystrokes/mouse clicks in selecting the initial word:
alt
+ shift
+ up
ctrl
+ k
This highlights the current word and then does a find next. It doesn't seem to be case-sensitive, though, but that's a small price to pay.
There are definitely some places it doesn't work, though. Like class
and implements
in the following (it highlights the whole class):
public class MyClass implements MyInterface {}