home *** CD-ROM | disk | FTP | other *** search
/ Simtel MSDOS 1992 June / SIMTEL_0692.cdr / msdos / eel / lenoil.arc / LENOIL.DOC < prev    next >
Text File  |  1989-01-10  |  2KB  |  39 lines

  1. ------------------------------------------------------------------------------
  2. AUTOSAVE.E
  3. This file implements a primitive auto save feature for Epsilon, based on the
  4. number of characters typed into a buffer.  Invoke via AUTO-SAVE-MODE.
  5.  
  6. MOUSE.E        
  7. This file adds limited support to Epsilon for the Microsoft Mouse, or any
  8. other mouse that adheres to the Microsoft Mouse programming interface.  Some
  9. of the functions provided are: setting point and mark, deleting a region,
  10. yanking text, scrolling several lines, and a "scroll bar" (a la Macintosh).
  11.  
  12. PROMPT.E
  13. This file implements the PROMPT command, which was available in pre-3.0
  14. versions of Epsilon.  It's main use is to provide upwards-compatibility for
  15. old Epsilon macros.
  16.  
  17. REVERT.E
  18. This file implements the REVERT-BUFFER command, as per standard EMACS.
  19.  
  20. STICKY.E
  21. This file implements the EMACS "sticky file defaulting" feature.  What this
  22. does is change the default directory for file operations to be the directory
  23. that contains the file in the current buffer.  This makes it vastly more
  24. pleasant to edit several files that are not in the DOS current directory, as
  25. you only specify the path on the first find-file; all the others implicitly
  26. use that path, with file name completion working too!  This file also modifies
  27. the completion mechanism to "go all the way."  This means that if completion
  28. yields a directory name, and that directory contains only one entry, then
  29. Epsilon will complete on that entry too.  For instance, if you have a file
  30. \ACCOUNTS\RECEIVAB.LES\NET30\A-M\ACME.WK1, and \ACC is enough to uniquely
  31. identify that path, then Epsilon will complete all the way to ACME.WK1.
  32.  
  33. VISBELL.E
  34. This file implements the EMACS "visible bell" feature.  It will flash the
  35. screen in lieu of beeping, when visible-bell is set.  Note: This feature
  36. works well on EGAs, but is generally too slow to be useful on lesser graphics
  37. cards.
  38.  
  39.