home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #20 / NN_1992_20.iso / spool / comp / sys / ibm / pc / misc / 12390 < prev    next >
Encoding:
Internet Message Format  |  1992-09-08  |  2.3 KB

  1. Xref: sparky comp.sys.ibm.pc.misc:12390 comp.os.msdos.misc:5095
  2. Newsgroups: comp.sys.ibm.pc.misc,comp.os.msdos.misc
  3. Path: sparky!uunet!gatech!hubcap!opusc!usceast!sunderma
  4. From: sunderma@cs.scarolina.edu (Jack Sunderman)
  5. Subject: Re: Handling keyboard macros in Telemate
  6. Message-ID: <sunderma.715980013@acacia.cs.scarolina.edu>
  7. Sender: usenet@usceast.cs.scarolina.edu (USENET News System)
  8. Organization: USC  Department of Computer Science
  9. References: <1992Sep8.163106.5390@starbase.trincoll.edu>
  10. Date:  8 Sep 92 19:20:13 GMT
  11. Lines: 55
  12.  
  13. nmiller@starbase.trincoll.edu (norman miller) writes:
  14.  
  15. >I've been trying out Telemate lately and I must confess that it
  16. >beats MS-Kermit in one crucial respect: I can shift keyboard
  17. >maps in midstream, something I have to do when shifting from the
  18. >Vax (VT102) to our Suns (which seem to prefer ANSI--at least as far
  19. >as the destructive backspace is concerned).
  20.  
  21. >Question: is there a way, when I do a rlogin from Vax to Sun, of
  22. >shifting keyboard maps without going through the somewhat awkward
  23. >procedure of Alt-M (twice) followed by choosing a new keyboard file?
  24.  
  25. Norman,
  26.  
  27.     I use the vt102 emulation on the Suns here most of the time. The
  28. trick I use for creating a destructive backspace is the following:
  29.  
  30. At the Sun prompt (assuming unix os):
  31.  
  32. C-shell: Type the following two commands:
  33.  
  34. %set term=vt100
  35. %stty erase <backspace>
  36.  
  37. Bourne Shell: Type the following three commands.
  38.  
  39. %TERM=vt100
  40. %export TERM
  41. %stty erase <backspace>
  42.  
  43. The first command(s) for both shells tells the shell what terminal type
  44. you have. If you do not give these commands then unix will probably think
  45. you are working on an ansi terminal.
  46. The last command for both shells sets up the destructive delete. BTW- If
  47. you are using the Bourne Shell I suggest you try switching to the
  48. C-shell instead. 
  49.  
  50. I hope this helps.
  51.  
  52.  
  53. (======================================================================)
  54. Jack Sunderman -Grad student in Comp. Sc. Working for Dept. of Surgery.
  55. e-mail:    sunderma@usceast.cs.scarolina.edu
  56.  
  57. Disclaimer: Jack's views are solely his own and to be taken with a
  58.     grain of salt.
  59. (======================================================================)
  60. Kick it! Kick it! No here! Kick it! Harder! Hit the Ball! Hit the Ball!
  61. Sorry inside joke.
  62. (======================================================================)
  63.  
  64. >Thanks in advance.
  65.  
  66. >Norman Miller
  67. >nmiller@vax1.trincoll.edu
  68.