home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1993 #3 / NN_1993_3.iso / spool / comp / sys / atari / st / tech / 6896 < prev    next >
Encoding:
Text File  |  1993-01-28  |  1.3 KB  |  42 lines

  1. Newsgroups: comp.sys.atari.st.tech
  2. Path: sparky!uunet!inmos!fulcrum!bham!warwick!nott-cs!unicorn!lpzssm
  3. From: lpzssm@unicorn.nott.ac.uk (S. Marshall)
  4. Subject: Re: Emacs backspace
  5. Message-ID: <1993Jan28.110120.11278@cs.nott.ac.uk>
  6. Sender: ssm@uk.ac.nott.psyc
  7. Organization: Cripps Computing Centre, University of Nottingham
  8. References: <1993Jan26.144314.12961@cs.utwente.nl>
  9. Date: Thu, 28 Jan 93 11:01:20 GMT
  10. Lines: 30
  11.  
  12. In article <1993Jan26.144314.12961@cs.utwente.nl> baumer@cs.utwente.nl (Han Baumer) writes:
  13. >
  14. >I want to use Emacs on my TT, but the emacs I have gives help if I
  15. >press the backspace key. I would like it to delete a character  (as it
  16. >does in most editors). How can I do this?
  17. >
  18.  
  19. Backspace on the ST/TT sends a control-h character, which to Emacs is
  20. help mode, so the easiest solution is probably just to re-configure
  21. emacs in an initialization file:
  22.  
  23. (from the emacs FAQ)
  24.  
  25.     * Another approach is to switch keybindings and put help on "C-x h"
  26.       instead:
  27.  
  28.         (global-set-key "\C-h" 'delete-backward-char)
  29.         (global-set-key "\C-xh" 'help-command) ; override mark-whole-buffer
  30.  
  31.       Other popular key bindings for help are M-? and "C-x ?".
  32.  
  33.       WARNING: Don't try to bind DEL to help-command, because there
  34.       are many  modes that have local bindings of DEL that will interfere.
  35.  
  36.  
  37. Sam
  38.  
  39.  
  40.  
  41.  
  42.