CONTENTS | INDEX | PREV | NEXT

SYNTAX            : RANGE I

RESULTING ARGUMENT: None

FUNCTION          : Insert one specified character a specified number of
                    times into the buffer at the current cursor position.
                    The cursor (and implicitly the value of  . ) is
                    positioned after the inserted characters.

RANGE             : CHARACTER,COUNT
                    CHARACTER: The ASCII value of the character to be
                               inserted. Values out of the ASCII range
                               (0-255) will be subjected to a mod 256
                               operation silently.
                    COUNT    : The number of times to insert the character.

EXAMPLE           : 32 , 10 i
                    Will insert ten SPACE characters.

MATRIX