home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / misc / volume1 / 8710 / 15 / README < prev   
Encoding:
Text File  |  1990-07-13  |  1.7 KB  |  44 lines

  1.  
  2. Basically e is a little thingamy to let you get into vi with more ease.
  3. I find it useful - even given a shell with history. It keeps a short history
  4. of the files that have been e'ed most recently in each directory. Thus it is 
  5. nice to be able to do
  6.  
  7.     cd somewhere
  8.     e
  9.  
  10. and get straight into the file you were last working on in the directory 
  11. "somewhere". It also allows quick cross-directory editing and trys to help 
  12. out with spelling.
  13.  
  14.  
  15. There is some documentation and examples in the file edoc.
  16.  
  17. Before making you should change the 
  18. #define VI "/usr/ucb/vi"
  19. line in e.h if your vi is located elsewhere.
  20. and the DEST line in Makefile.
  21.  
  22. This will run just fine on BSD4.[23].
  23. It appears to work on a SUN as well, just #define SUN in e.h
  24.  
  25. Other versions will have little trouble. The readdir/opendir stuff of BSD is 
  26. used for spelling corrections and cross-directory e'ing. I modified e.h to work
  27. on unix v8 in about 15 minutes. I think all that was required was to 
  28. #include <ndir.h> instead of dir.h and to change the modes on the read() calls.
  29.  
  30. This appears free of major bugs (famous last words) - I'd really like to hear
  31. about anything that goes wrong and/or fixes/enhancements. Comments on what is
  32. wrong and how it could be better/faster are also welcome...
  33.  
  34.  
  35. -------------------------------------------------------------------------------
  36. Terry Jones, Department Of Computer Science, University Of Waterloo
  37.              Waterloo Ontario Canada N2L 3G1
  38.  
  39. {ihnp4,allegra,decvax,utzoo,utcsri,clyde}!watmath!watdragon!tcjones
  40. tcjones@dragon.waterloo.{cdn,edu} tcjones@WATER.bitnet
  41. tcjones%watdragon@waterloo.csnet [from oz, tcjones@dragon.waterloo.cdn@munnari]
  42. -------------------------------------------------------------------------------
  43.  
  44.