APPEND.200 by James Yi 1989, edited by Robert Benson APPEND.CO is 239 bytes and runs in the Alt LCD at 63574, it's a utility that lets cut [F5] or copied [F6] text accumulate in the paste buffer instead of replacing it. APPEND by itself, can be run from Menu. When entered from the Menu it prompts for a file name, type the name and as you enter hold down the SHIFT key if you want the word-wrap feature intact or just press ENTER to disable word wrapping. Cut and copy as you would normally and the new text will be added to what is already in the paste buffer. To clear the paste buffer press F6 right after pressing F7 without moving the cursor. The program turns itself off when you exit a text file or when the function key labels change. That means if you press F4 "List" the APPEND feature will not be there as you re-enter text with F4 "Edit". If typing the file name each time you access a file becomes too inconvenient you may want to try the following solution: Create the Basic program listed below for each file that you access frequently, and then whenever you want to edit one, run the Basic program for that file. In line 10, replace "NOTE" with another name and change W=0 to W=1 if you want the word wrapping feature enabled. 10 F$="NOTE":W=0 20 F$=F$+CHR$(0):V=VARPTR(F$) 30 LOADM"APPEND":CALL63574,W,PEEK(V+1)+PEEK(V+2)*256