Autocomplete in Mathematica 9 offers suggestions from inside SetDelayed and Module. For example, after running:
func[thing1_, thing2_] := thing1 + thing2;
Module[{thing3},
thing3 = 10;
thing3 + 4
]
autocomplete will offer thing1, thing2, and thing3 as suggestions. Since they are intended to be local, this gets in the way. Is there a way around this?
Autocompletewill offer all symbols in theGlobalcontext and just using it in aModulecreates a persistent symbol (even if its value is cleared). – rm -rf Mar 04 '14 at 18:04