Entering and Editing |
In the Command Mode, the RUBOUT key deletes the last entered character each time you press it, and backspaces the cursor on a CRT. On a teletype, or with RMX/SO
Suppose you enter 52 instead of 55.To erase the 2, press RUBOUT:
30 A=8*52 •
30 A=8*5 •
If you press RUBOUT again, the 5 is deleted:
30 A=8* •
To change 52 to 37, press RUBOUT twice, then 3, 7:
30 A=8*52 •
30 A=8* •
30 A=8*37 •
When using the Edit Mode, RUBOUT works somewhat differently. Refer to the Editing Program Text Section for details.
30A--=8xx*522537 (Control-R) A = 8*37
To cancel a line, simply press
Editing Program Text
Intel
Table
Function | Syntax |
|
|
To delete text: | [integer] 0 |
To insert text: | I character [character. ..] |
To delete all characters to the right of the cursor | H character [character... ] |
and insert text: |
|
To insert characters at the end of the line: | X character [character...] |
To search for a character: | [integer] S character |
To delete all characters until specified character: | [integer] K character |
To change next n characters to y characters: | [integer] C character [character...] |
To restore original line and leave Edit Mode: | Q |
To restore original line and restart Edit Mode: | A |
To print balance of line and restart Edit Mode: | L |
To leave Edit Mode and keep changes: | E |
To leave Edit Mode, keep changes, and print the | Carriage return |
edited line: | Rubout |
To delete unwanted characters: | |
To place one logical statement line on two or more | Line Feed |
physical lines: |
|
To leave next n characters unchanged: | [integ.er] space |
|
|