home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #19 / NN_1992_19.iso / spool / gnu / emacs / help / 3969 < prev    next >
Encoding:
Text File  |  1992-09-02  |  1.4 KB  |  39 lines

  1. Newsgroups: gnu.emacs.help
  2. Path: sparky!uunet!elroy.jpl.nasa.gov!usc!wupost!darwin.sura.net!ukma!cs.widener.edu!umn.edu!csus.edu!csusac!cdsac!scotte
  3. From: scotte@cdsac.uucp (L. Scott Emmons)
  4. Subject: Re: Binding the DEL key.
  5. Message-ID: <Sep02.194410.17093@cdsac.uucp>
  6. NntpPostingHost: cdsac
  7. Date: 02 Sep 1992 19:44:10 GMT
  8. References: <BturFr.BB2@news.cso.uiuc.edu> <1992Sep02.030617.21228@bnr.ca>
  9. Organization: CableData (U.S. Computer Services), Sacramento, CA
  10. Lines: 27
  11.  
  12. In article <1992Sep02.030617.21228@bnr.ca> mac@bnr.ca (Michael Campbell) writes:
  13. >The intent of this file seems to be to provide some vaguely 
  14. >intelligent key mappings on per terminal type basis. Unfortunately,
  15. >it may overwrite something you set in your .emacs. I had this 
  16. >problem with a VT100 key, and eventaully resolved it by 
  17. >adding one of my own directories to the head of the loadpath
  18. >list, and putting in my own vt100.el, which did what I wanted.
  19. >Good luck!
  20.  
  21. There is also the termsetuphook, which can be used in your .emacs file
  22. to do terminal specific initialization, but only AFTER the .../term/*.el
  23. initialization is done.
  24.  
  25. For example, you can do this in your .emacs file to get arrow keys on a
  26. vt100:
  27.  
  28.     (defun vt100initialization ()
  29.         (enablearrowkeys))
  30.  
  31.     (setq termsetuphook 'vt100initialization)
  32.  
  33. Hope this helps...
  34.  
  35.  
  36.                L. Scott Emmons
  37.               CableData  Research Center
  38.              csusac.csus.edu!cdsac!scotte
  39.