home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 299.lha / hed.README < prev    next >
Text File  |  1980-12-05  |  2KB  |  58 lines

  1.                           Why Another Text Editor
  2.  
  3. After using Ed for the past two years to develop "C" programs, I decided
  4. to develop my own text editor.  My goal was to develop an editor that
  5. provides all the functions that I had become used to using, while at the
  6. same time, eliminate many of those annoying features found in Ed, i.e.,
  7. inability to use the mouse, ackward scrolling, run away commands, no file
  8. requester, etc.  I also wanted an editor that was less than 28K in size
  9. that would fit on my Work Bench disk.  Hed is the result of my effort.  I
  10. hope that you will find the program useful also.
  11.  
  12. I have provided no documentation for Hed.  However, I  feel that an
  13. experienced text editor user will not require it.  All commands are given
  14. with either a menu or function key selection.  On-screen help is available
  15. for function key usage.
  16.  
  17. Here are a few points that may not be obvious even to the experienced text
  18. editor user:
  19.  
  20.      (1)  If you position the pointer on the title bar and click the left
  21.           mouse button, the text will scroll down one screen.
  22.  
  23.      (2)  If you position the pointer on the last line of the screen (error
  24.           line) and click the left mouse button, the text will scroll up
  25.           one screen.
  26.  
  27.      (3)  Hed does not store TAB characters in the text file.  If you load
  28.           and save a file that contains TABs, they will be removed and
  29.           replaced by spaces (three spaces for each TAB character).
  30.  
  31.      (4)  If you load and save a file that contains carriage returns, they
  32.           will be removed and replaced by line feeds.
  33.  
  34.      (5)  An empty file will not be saved.
  35.  
  36.      (6)  When RETURN is depressed, the cursor is positioned under the first
  37.           non-space in the previous line.  This feature along with the
  38.           Back Tab is very handy for "C" programmers.
  39.  
  40.      (7)  The following notations can be used in the Find Command search
  41.           pattern:
  42.  
  43.                     ?   Matches any single character
  44.                     c*  Matches zero or more occurrences of character c
  45.                     c+  Matches one or more occurrences of character c
  46.                     \?  Matches a question mark (?)
  47.                     \*  Matches an asterisk (*)
  48.                     \+  Matches a plus sign (+)
  49.  
  50. I hope that I have eliminated all the bugs.  However, if you find one please
  51. let me know.
  52.  
  53.                                        Hal Carter
  54.  
  55.  
  56.  
  57.  
  58.