Hey this almost works for Windows Sublime too!! Still get issues with indentation after a line of commented code. But your other changes work great. Still unusable for me, since…y’know I comment code. 
Before reindent:
[lua]function Cleanup()
– First, delete previous trail
print("Before cleanup size of table "…#scrollers)
if(#scrollers>0)then
for i = #scrollers,1,-1 do
local child = scrollers[i]
if(child~=nil)then
display.remove( child )
child = nil
end
end
scrollers = nil
scrollers = {}
end
print("Size of table after cleanup "…#scrollers)
end[/lua]
And after going to EDIT->LINE->REINDENT
[lua]function Cleanup()
– First, delete previous trail
print("Before cleanup size of table "…#scrollers)
if(#scrollers>0)then
for i = #scrollers,1,-1 do
local child = scrollers[i]
if(child~=nil)then
display.remove( child )
child = nil
end
end
scrollers = nil
scrollers = {}
end
print("Size of table after cleanup "…#scrollers)
end[/lua]
Damn, SOOOOOOO close. This glitch is the ONLY thing keeping me from going full Sublime.
Appreciate your efforts to kill this bug!!!
-Mario