home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Hall of Fame
/
HallofFameCDROM.cdr
/
prpascal
/
tptutor.lzh
/
PROG2A.PAS
< prev
next >
Wrap
Pascal/Delphi Source File
|
1986-06-15
|
896b
|
21 lines
PROGRAM PROG2A;
{ Print a quick reference chart to accompany
TURBO-LESSON 2.
}
BEGIN
WriteLn(Lst,' EDITOR - CURSOR MOVEMENT');
WriteLn(Lst);
WriteLn(Lst,'Left-arrow Left one character');
WriteLn(Lst,'Right-arrow Right one character');
WriteLn(Lst,'Ctrl-Left-arrow Left one word');
WriteLn(Lst,'Ctrl-Right-arrow Right one word');
WriteLn(Lst,'Home Left end of current line');
WriteLn(Lst,'End Right end of current line');
WriteLn(Lst,'Ctrl-Home Top of current screen');
WriteLn(Lst,'Ctrl-End Bottom of current screen');
WriteLn(Lst,'PgUp Previous screen');
WriteLn(Lst,'PgDn Next screen');
WriteLn(Lst,'Ctrl-PgUp Beginning of file');
WriteLn(Lst,'Ctrl-PgDn End of file');
END.