home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #16 / NN_1992_16.iso / spool / comp / sys / amiga / programm / 11609 < prev    next >
Encoding:
Text File  |  1992-07-25  |  1.8 KB  |  53 lines

  1. Path: sparky!uunet!gumby!wupost!sdd.hp.com!nobody
  2. From: denson@sdd.hp.com (Craig Denson)
  3. Newsgroups: comp.sys.amiga.programmer
  4. Subject: Re: GNU Emacs vs. the world . . . (was Re: C Programmer's Editor of Choice?)
  5. Date: 24 Jul 1992 13:51:28 -0700
  6. Organization: Hewlett Packard, San Diego Division
  7. Lines: 41
  8. Message-ID: <14pqggINN18s@hpsdln.sdd.hp.com>
  9. References: <ACHOW.92Jul23183544@cad093.scdt.intel.com> <1992Jul24.141245.18706@syma.sussex.ac.uk>
  10. NNTP-Posting-Host: hpsdln.sdd.hp.com
  11.  
  12. In article <1992Jul24.141245.18706@syma.sussex.ac.uk> mpue2@syma.sussex.ac.uk (James E. Talbut) writes:
  13.  
  14. >> Oh, boy.  An GNU Emacs vs. the world thread . . .
  15.  
  16.   is there anything out there other than emacs??
  17.  
  18. >1) How do I dump it?
  19.   this is don't know - it's a non-issue on a 50Mhz 030 - and once you get
  20. gnuserv working. investigate gnuclient.
  21.  
  22. >2) How do I get it to not EVER do backups?
  23.  
  24.   (setq make-backup-files nil) ; in your .emacs file
  25. ; incidentally, backup files have saved my .. sanity .. more than once.
  26.  
  27. >3) How do I get it to NEVER do autosave?
  28.  
  29.    (setq auto-save-default nil) ; also in your .emacs file
  30. ; however auto-save is a good thing, not a bad one. if it seems to
  31. ; frequent, try upping the character count between saves
  32.  
  33. (setq auto-save-interval 1000) ; or even bigger.
  34.  
  35. >Another question:
  36. >When I exit emacs it tries to write something to my SYS: what? and why?
  37.  
  38.  if gnuserv is running this may be where its socket is (how does this
  39. work on the amiga, anyway?) 
  40.  
  41. Some hints:
  42.  work through the tutorial, 'Meta-?-i' will pop you into info mode and
  43. you can do the tutorial.
  44.  
  45.  edit your .emacs file and use 'Meta-?-v' while the cursor is on a
  46. variable name or 'Meta-?-f' while it's on a function name.
  47.  
  48. e.g. for auto-save-default, you get:
  49. Documentation:
  50. *t says by default do auto-saving of every file-visiting buffer.
  51.  
  52. craig 
  53.