In Eclipse debugging mode for C / C ++, you can right-click on any observable expression that is a pointer and select "display as array". Then you will be offered the boundaries of the array, and for the rest of this debugging run, the observed expression is displayed as an array in accordance with these boundaries.
When I complete the process and start debugging again, it remembers my viewed expressions, but the pointers that were previously displayed as arrays will now be just pointers and therefore I have to re-display all the pointers in each debug run. In a recent project, it has become very tedious.
Is there a way to get Eclipse to remember the display as array option for the lookedup expressions?
source share