Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Eclipse does not highlight matching variables for me:

enter image description here

I've already tried to change "Mark occurrences" via

Window -> Preferences -> Java -> Editor -> Mark Occurrences

but it didn't work. I am not sure why this is not working while others have been able to fix the problem.

Can anyone tell me how can I set highlighting matching variables?

Looking for same variables with my eyes really bothering me too much.

share|improve this question

2 Answers

up vote 17 down vote accepted

Try:

window > preferences > java > editor > mark occurrences 

Select all options available there.

Also go to:

Preferences > General > Editors > Text Editors > Annotations

In here compare the settings for 'Occurrences' and 'Write Occurrences'

Make sure that you don't have the 'Text as higlighted' option checked for one of them.

It should work.

share|improve this answer
2  
I selected all options but this eclipse still not highlighting variables. – Seho Lee Mar 29 '12 at 6:36
I've edited my answer, check it please. – Korhan Öztürk Mar 29 '12 at 6:51
eclipse.org/forums/index.php/mv/tree/57656/#page_top according to link, it appears that mark writing occurences in jsp has been disabled due to deadlock bug. I am making jsp file on web dynamic module 3.6 so I guess that was the cause. It seems everything going to be fine if I set my web dynamic module 3.6 to 4.0. Anyways, I am very thankful for your answer. – Seho Lee Mar 30 '12 at 4:54

maybe because it not supports code highlights inside scriplets. not sure though.

You can try using one of the eclipse plugin like 'glance search' which works great. Here's a link for that- http://code.google.com/p/eclipse-glance/

share|improve this answer
1  
'Glance search' is basically a string highlighter which highlights all matching string/regex. It works on all view tabs and not just editors, so that means on your console/project explorer tab also. Press Ctrl+Alt+F to activate it – Kshitij Mar 29 '12 at 6:37
1  
eclipse.org/forums/index.php/mv/tree/57656/#page_top according to link, it appears that mark writing occurences in jsp has been disabled due to deadlock bug. I am making jsp file on web dynamic module 3.6 so I guess that was the cause. It seems everything going to be fine if I set my web dynamic module 3.6 to 4.0. Anyways, I am very thankful for you guys answer. – Seho Lee Mar 30 '12 at 5:00

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.