[REBOL] Re: not so pseudo code? (an alternative to style changes)
From: hallvard:ystad:helpinhand at: 9-Jan-2002 13:16
Brett,
With the risk of having completely misunderstood what you are asking for...
I believe JEdit has the capacity to collapse portions of code, so that if you have, say
collapse: func [a b /local c] [
print "this method does nothing."
loop 20 [
print "I do nothing!"
]
comment {
This could have been longer,
but this should do.
}
]
You could double-click the word collapse, and the only thing you would see was
collapse: func [a b /local c] [ ... ]
I don't use JEdit myself, so I'm not 100% sure how this works, but I believe JEdit is
free, so you could always check it out for yourself. This is a feature I've wanted in
TextPad for a long time, though.
~H
Dixit Brett Handley (13.00 09.01.2002):