The TS command splits
the line of text at the cursor, and moves the remaining text to a
new line starting at the left margin. If you specify a numeric argument,
the TS command moves the text down the number of lines specified.
With the AUTOFLOW command turned on, the TS command uses the left
boundary that is specified by the BOUNDS command. If the INDENT command
is turned on, the TS command uses the current indention at the left
margin. With the AUTOFLOW command turned off, the left boundary and
the current indention at the left margin are reset.
This example shows the
effect of splitting two statements in a SAS program and placing each
statement on a separate line. This example shows the text after you
type the TS command on line 0001 and position the cursor after the
first statement, and before you press Enter or Return:
ts 01 proc print data=temp; run;
When you press Enter
or Return, the following result is displayed:
00001 proc print data=temp;
00002 run;