Onscreen IDE & dynamic instant update [_v0.5.4_]

Oh thank you very much! :slight_smile:
Renamed directory to gameCode, and it aworks now!

I also have one idea/feature request :slight_smile:
Display current scope level (maybe even in separate wx window, or at some side panel or increase number of rows in statusbar).

So once when you mouse cursor is in some place, it would read something like this
any other code for example inside init() method would not be visible in hierarchy view

global
  class World():
    def init(self):
      for i in range(5):
        if i==1:
          #this IF is dummy!
          !!!Here you are!!!
    

It would be like code view, but with everything where your mouse cursor is not automatically folded (this could be used for code navigation easily). It would also inform you of bad indentation.

If its too much work, maybe its a lot easier just to show where you are currently in status bar?

so status bar would have text like:
if i==1: #this IF is dummy!
and commentar would be different color :slight_smile:

EDIT1: Oh nvm, i didnt knew before that there is notification on changing scope level. You can pretty much ignore last request.