Does IntelliJ IDEA has "Pin variable" feature while debugging?
Hi, does IntelliJ IDEA has "Pin variable" feature while debugging?
Means a sticky tiny window beside a variable showing its value while debugging.
Just like described in here: http://weblogs.asp.net/jalpeshpvadgama/archive/2011/04/10/pin-features-while-debugging-in-visual-studio-2010.aspx
Thanks!
Please sign in to leave a comment.
IntelliJ IDEA doesn't show sticky tiny window, but you can get the value of a variable in 3 ways:
- just with mouse hover
- Alt+Mouse Click on the var in code
- the quickest way is Right Click | Add to Watches. Var value will always be shown in the Watches panel of the Debug tool window.