Posted 20 years ago
by NSXDavid

I'm attempting to get outlining to work with a language that doesn't have braces. Given the following code snipet (as before):
How would I setup the parsing so that I can outline the IF construct properly:
I don't have braces to collapse on and if I collapse on the IF (which is what starts the block), I get...
Which isn't what I'm after. Is there a way to do this?
-- David
if (something = somethingelse)
dosomething()
dosomethingelse()
else
dosomethingmore()
domorethingsthanbefore()
stopdoingthings()
.
if (something = somethingelse) [...]
[....]
-- David