PDA

View Full Version : Equates repetition



ErosOlmi
29-11-2007, 19:11
All string constants, also called equates, starting from next preview will have an optional repetition number after the equate name indicating repetition of the same string equate.

For example:


$TAB(4) will be equivalent to REPEAT$(4, $TAB)
$CRLF(2) will be equivalent to $CRLF & $CRLF also equivalent to REPEAT$(2, $CRLF)


Hope you will like it.

Eros

Petr Schreiber
29-11-2007, 19:31
Hi Eros,

this is perfect idea. No more $TAB+$TAB+$TAB+$TAB madness :)


Thanks,
Petr

ErosOlmi
29-11-2007, 19:34
Exactly.

It will work on all equates even the one defined inside the script.

Petr Schreiber
29-11-2007, 19:36
Great news then,

I can see lot of perfect ideas was born in your head during the busy period!


Nice,
Petr

kryton9
30-11-2007, 08:34
That is cool idea... one of those things that when you use it you go.... ahhh that is a nice feature!