home *** CD-ROM | disk | FTP | other *** search
/ Between Heaven & Hell 2 / BetweenHeavenHell.cdr / 500 / 444 / edit.dqc / edit.doc
Text File  |  1984-11-25  |  4KB  |  169 lines

  1.              Edit User Manual
  2. Editing is in the memory buffer.
  3. To run:
  4.         [d:]edit [[d:]filename.ext]
  5.  
  6. Edit starts in command mode, identified by an * prompt.
  7.  
  8. Command Descriptions
  9.  
  10. H - Help
  11.  
  12.         *H
  13.  
  14. Prints help message.
  15.  
  16. S - Screen Mode
  17.  
  18.        *S
  19.  
  20. Goes into screen edit mode, showing text on screen. Exit via Ctrl-Z.
  21.  
  22. C - Create
  23.  
  24.        *C[d:]filename.ext
  25.  
  26. Creates new file. (overwrites existing). Text buffer unaltered.
  27.  
  28. R - Read File
  29.        *R[d:]filename.ext or *R
  30.  
  31. Reads file into text buffer or appends to
  32. text in buffer already. *R form reads more of open file.
  33.  
  34. I - Insert File
  35.  
  36.        *I[d:]filename.ext
  37.  
  38. Inserts file to left of cursor (as much as fits in memory).
  39.  
  40. T - Tabs
  41.  
  42.        *T or *TP or *TF or *TN
  43.  
  44. *T sets tabs. *T causes Edit to prompt for tab columns. You input a line of 
  45. spaces and T's. The tabs go where you put the T's.
  46. *TP sets tabs to Pascal defaults. *TF sets
  47. to Fortran default.
  48. *TN turns off special tab mode; tabs are as in DOS.
  49.  
  50. W - Write file
  51.  
  52.        *W[d:]filename.ext or *W
  53.  
  54. *Wfile writes out text buffer up to but not including cursor pos.
  55. on file, then deletes text written. The filename defaults to last read file.
  56.  
  57. E - Exit
  58.  
  59.        *E
  60.  
  61. Writes out text buffer to disk and ends edit. Equals Q if no file ever opened.
  62.  
  63. Q - Quit
  64.  
  65.        *Q
  66.  
  67. Aborts edit session. Confirm needed (y/n).
  68.  
  69.   Screen mode
  70.  
  71. To switch to the screen mode, type in the S command while in the command  mode.
  72.  
  73. To  leave the screen mode, type CTRL-Z.
  74.  
  75. The number at the bottom right is the memory left. If you try to
  76. overfill memory, Edit returns to command mode. No text is lost. Lines of
  77. text are ended with return in Edit.
  78.  
  79. Editing Keys:
  80.     Cursor keys - move in arrow direction.
  81.     Home - Goes to start or end of file depending on current
  82.         direction.
  83.     End - goes to end of next or prev. line.
  84.     PgUp - Goes up 18 lines.
  85.     PgDn - Goes down 18 lines.
  86.     Del - deletes char at cursor position
  87.     Ins - Moves to start of next or prev. line.
  88.     Backspace - deletes char to left of cursor.
  89.     Tab - Inserts either tab or spaces to next special tab stop.
  90.  
  91. Special Function Keys:
  92.         F1 - Set direction up      F2 - Place select marker
  93.         F3 - Find string           F4 - Cut selected text
  94.         F5 - Find next             F6 - Paste in paste buffer
  95.         F7 - Move left one word    F8 - Move right one word
  96.         F9 - Set direction down    F10- Reset select
  97.  
  98. F1 - Set direction up
  99.  
  100. The functions of F3, F5,  Home, and  End, need a direction.
  101. F1 sets the direction to up (back).
  102.  
  103. F3 - Find string
  104.  
  105. Edit prompts for a string of up to 50 characters to search for. Terminate
  106. search string with Return, F5, F1, or F9.
  107. Return or F5-search in the current dir. F1 or F9 cause search in back or
  108. fwd direction. Match is case insensitive.
  109.  
  110. Alt F3 - Define macro
  111.  
  112. Asks for a macro definition. To enter: type a delimiter
  113. character (any printable char) followed by the keys you want Edit
  114. to  learn.  End by typing the delimiter char again.
  115. Up to 130 keys are allowed.
  116.  
  117. F5 - Find next
  118.  
  119. Edit searches fwd or back (depending on the current
  120. direction) for the search string defined with the last find command.
  121.  
  122. Alt F5 - Execute Macro
  123.  
  124. Prompts for a count of times to execute the
  125. stored macro if one was entered.  Enter  a  number  followed  by  a
  126. return  (return only means 1). The stored macro will
  127. be played through Edit as if typed in the number of times said.
  128. Macro ends early on search failure.
  129.  
  130. F7 - Move left one word
  131.  
  132. Moves the cursor to the beginning of the next word to the
  133. left of the cursor.
  134.  
  135. F9 - Set direction down
  136.  
  137. Sets the direction to down (forward).
  138.  
  139. F2 - Place select marker
  140.  
  141. Keys  F2,  F4, F6, and F10 are all associated with the cut and paste function.
  142.  
  143. F2 marks the cursor position. Move the cursor and selected text is shown in
  144. reverse video.
  145.  
  146. F4 - Cut
  147.  
  148. F4  key  removes  the  selected  text
  149. (highlighted  in  reverse video) from the text buffer and place it in the paste
  150. buffer. The previous contents of the paste buffer is deleted.
  151. This is a handy way to delete text.
  152.  
  153. F6 - Paste
  154.  
  155. Copies the content of the  paste  buffer  into
  156. the  text  buffer to the left of the cursor position. The content of the paste
  157. buffer is not modified by this command.
  158.  
  159. F8 - Move right one word
  160.  
  161. Moves the cursor to the beginning of the next word to the
  162. right of the cursor.
  163.  
  164. F10 - Reset select
  165.  
  166. Turns off select mode.
  167.  
  168.  
  169.