| It's no Bug, but would be a great feature: 
 Back in my GFA-Basic-Days there was an awesome thing, like  folding in Functions per Hotkey (they were called "Procedures", though). You had your Procedures, which ran like this:
 
 
 Procedure DoStuff
    DoStuff
    DoMoreStuff
    DoEvenMoreStuff
ReturnAnd then you could fold the whole thing inwards, so it was  just
 
 
 >> Procedure DoStuff And to fold the whole thing open again, you just had to place the cursor on the line and press your hotkey.
 It was a great way to make your code seem a little bit more structured. Would something like this probably be possible with Blitz-Plus, too?
 
 
 |