The IAR watch window has this nice feature to display N elements pointed to by a pointer, like myPtr;3
will show myPtr, myPtr+1, and myPtr+2. Additionally myArray;5,10 would display 5 elements, starting from the 10th element myPtr+10, myPtr+11, myPtr+12, myPtr+13, and myPtr+14.
Is this something that could be added to VSCode's watch window interpreter?