To include part of another file use two windows:
- Move to the window displaying the file
to be updated.
- Open new window:
DO ... SPLIT ... RETURN
- Move to new window:
DO ... OTHER ... RETURN
- Load file containing required text:
DO ... GET filename ... RETURN
- choose the section of text to be included:
SELECT the required text
- Delete it:
REMOVE
- Restore it:
INSERT HERE
- Go back to master file:
DO ... OTHER ... RETURN
- Move cursor to insert location.
- Insert required text:
INSERT HERE
- Close other window:
DO ... ONE ... RETURN
For safety, the include file should not be written back to disk.
If another part of the same file is needed later, use
BUFFER filename
instead of
GET filename
in step 4.
Adrian P Robson
2011-04-23