home *** CD-ROM | disk | FTP | other *** search
/ Simtel MSDOS 1992 September / Simtel20_Sept92.cdr / msdos / keyboard / keydo.arc / KEYDO.DOC < prev   
Text File  |  1987-10-30  |  2KB  |  37 lines

  1.              keydo - a simple history mechanism for MS-DOS
  2.  
  3. KEYPAD KEY   OPERATION                    KEY        OPERATION
  4.  
  5. Up Arrow     Recall earlier command       Dn Arrow   Recall later command
  6.  
  7. Left Arrow   Move cursor left 1 char.     Backspace  Delete prior char.
  8. Right Arrow  Move cursor right 1 char.    Del        Delete current char.
  9. Ctrl-Left    Move cursor left 1 word      Ctrl-Home  Erase to start of line
  10. Ctrl-Right   Move cursor right 1 word     Ctrl-End   Erase to end of line
  11. Home         Move cursor to line start    Esc        Erase complete line
  12. End          Move cursor to line end      Ins        Toggle overwrite/insert
  13.  
  14. This program is loaded as a part of the command environment in MS-DOS, and 
  15. remembers commands as they are typed.  If you want to repeat a command, just 
  16. press the Up Arrow key on your keypad, and the command will appear on the 
  17. command line just as if you had typed it in again.  To execute it unchanged, 
  18. press the <RETURN> key.  
  19.  
  20. You can "back up" more than 1 command: pressing the Up Arrow key will recall a 
  21. previous command each time.  The last 32 commands you typed are available in a 
  22. circular buffer; to go the other way use the Down Arrow key.  
  23.  
  24. You can edit the recalled command before you execute it: use the Left and 
  25. Right Arrow keys to move the cursor back and forth on the line.  Hold down the 
  26. Ctrl key, and the arrow keys move the cursor one "word" at a time.  The Home 
  27. key moves the cursor to the beginning of the line, the End key moves it to the 
  28. end.  The Del key deletes the character the cursor is sitting on, the back-
  29. space key deletes the one before the cursor.  Ctrl-Home erases from the cursor 
  30. position to the start of the line, Ctrl-End erases from the cursor to the end 
  31. of the line.  You can insert new characters just by typing them. To overwrite 
  32. characters present, touch the Ins key once, then type.  
  33.  
  34. You can execute the revised command at any time, with the cursor in any 
  35. position, by pressing the <RETURN> key.
  36. 
  37.