home *** CD-ROM | disk | FTP | other *** search
- 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.