Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Eclipse debug show variables content

Is there any way to make Eclipse show the variables content, when debugging, inside the editor, without having to inspect them or look in the variables view?

The image below shows IntelliJ's debugger. I am looking for something similar in eclipse, a plugin maybe.

enter image description here

like image 850
tzortzik Avatar asked Nov 09 '22 20:11

tzortzik


1 Answers

There is no way in eclipse to see the variables current value inside the editor. You need to use the Eclipse inspection (Ctrl + Shift + I) or the Variables View.

See some limitations: Things possible in IntelliJ that aren't possible in Eclipse?

like image 95
Sumit Singh Avatar answered Nov 15 '22 08:11

Sumit Singh