Within the debugger, can we watch local variables within a Module?
As the screenshot shows, the “i” only display its global value (12) upon a message breakpoint. Is there a way to show its local value?

Clear[i];
i = 12; f[] := Module[{i}, For[i = 1, i < 10, i++, Print[i]; Print[":\t"]; Print[i/0]]; ];
f[]
Jimmy


iwithin the module - it's some temporary variable. – VF1 Jan 04 '14 at 20:17