Word wrapping in procedure window

In Igor 7, is there a way to wrap text in the procedure window?

Or equivalently, is there a way to continue an expression over more than one line? i.e. can
a = b + c + d + e
be somehow manually entered in the procedure window as
a = b + c +
d + e
Quote:
In Igor 7, is there a way to wrap text in the procedure window?


No.

Quote:
Or equivalently, is there a way to continue an expression over more than one line? i.e. can
a = b + c + d + e
be somehow manually entered in the procedure window as
a = b + c +
d + e


Yes. Execute:
DisplayHelpTopic "Line Continuation"

However, it is often more readable and easier to debug if you use temporary variables to store intermediate values. For example:
Variable part1 = a + b
Variable part2 = c + d
Variable result = part1 + part2