[613] | 1 | ZVEMOH2 ;DJB,VRROLD**Help Text [01/15/95]
|
---|
| 2 | ;;12;VPE;;COPYRIGHT David Bolduc @1993
|
---|
| 3 | ;
|
---|
| 4 | VRROLD ;;;
|
---|
| 5 | ;;;
|
---|
| 6 | ;;; E D I T Submenu
|
---|
| 7 | ;;;
|
---|
| 8 | ;;; 'n' Enter the line number of the line of code you wish to edit.
|
---|
| 9 | ;;; HIGHLIGHT You may also position the HIGHLIGHT and hit <TAB> to select
|
---|
| 10 | ;;; a line for editing. You may use the HIGHLIGHT/<TAB> combination
|
---|
| 11 | ;;; for other commands as well. Any other command that asks for
|
---|
| 12 | ;;; LINE NUMBER will accept <TAB> to mean the HIGHLIGHTED line.
|
---|
| 13 | ;;;
|
---|
| 14 | ;;; I Insert new code after selected line number. To insert a line
|
---|
| 15 | ;;; at the top of the routine, INSERT after line 0 (zero).
|
---|
| 16 | ;;;
|
---|
| 17 | ;;; D Delete selected line or range of lines. To select a range
|
---|
| 18 | ;;; use a dash. Ex. Delete lines 5-9.
|
---|
| 19 | ;;;
|
---|
| 20 | ;;; LC Locate and change string. This option will locate every
|
---|
| 21 | ;;; occurrance of the selected string and change it to the selected
|
---|
| 22 | ;;; value, within a selected range of lines.
|
---|
| 23 | ;;;
|
---|
| 24 | ;;; SA Save a line or range of lines. Use this option to move code
|
---|
| 25 | ;;; elsewhere in the program or to other programs.
|
---|
| 26 | ;;;
|
---|
| 27 | ;;; UN UNsave copies SAved code to a new location. The code will
|
---|
| 28 | ;;; be inserted after the selected line number. To UNSAVE a line
|
---|
| 29 | ;;; at the top of the routine, UNSAVE after line 0 (zero).
|
---|
| 30 | ;;;
|
---|
| 31 | ;;; BK Break a line into 2 lines. Trailing and leading spaces are
|
---|
| 32 | ;;; removed.
|
---|
| 33 | ;;;
|
---|
| 34 | ;;; J Join 2 selected lines. The 2nd line is joined to the end of
|
---|
| 35 | ;;; the 1st line and then deleted. Use Split to undo.
|
---|
| 36 | ;;;
|
---|
| 37 | ;;; MD This is a toggle switch that changes between screen edit mode
|
---|
| 38 | ;;; and line edit mode (REPLACE: WITH:).
|
---|
| 39 | ;;;
|
---|
| 40 | ;;; PUR The SAve and UNsave options use global ^%ZVEMS("E","SAVE")
|
---|
| 41 | ;;; as a holding location. ^%ZVEMS("E","SAVE") does not grow to any
|
---|
| 42 | ;;; great extent, but it can be killed at any time with this purge
|
---|
| 43 | ;;; option.
|
---|
| 44 | ;;;***
|
---|