home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / k95 / german-control-keys.txt < prev    next >
Internet Message Format  |  2020-01-01  |  1KB

  1. Date: Tue, 2 Jul 1996 10:24:34 +0200
  2. From: Josef Hinteregger <joehtg@ping.at>
  3. Subject: Re: Test of SET WIN95 ALT-GR ON
  4.  
  5. I am happy to confirm that the german keyboard is now fully supported in
  6. K95, Alt-Gr and dead keys work ok. 
  7.  
  8. The "incorrect" position of the control keys has been a "feature" of
  9. MSDOS-Kermit since the first version 2.29 I started using, and those positions
  10. are not affected by SET WIN95 Alt-GR on.
  11.  
  12. They just are a slight difference to the german keyboard as it works under
  13. MSDOS, and many other terminal emulations (starting with Hyperterminal and
  14. Win95-Telnet) show the same "incorrect" behaviour as K95.
  15.  
  16. Below you find my definitions to get the control keys to the correctly
  17. labeled keys on a german keyboard, in case you want to put them somewhere in
  18. the documentation or in a help file. The US-positions should not be removed
  19. because many are already used to find the control keys there.
  20.  
  21. ---(cut here)---
  22. ; GERMAN keyboard 
  23.  
  24. set win95 alt-gr on
  25.  
  26. ; control key definitions
  27. ; in addition to predefined US-positions
  28.  
  29. set key \1336 \27    ; Ctrl-[ (Escape)
  30. set key \1499 \28    ; Ctrl-\ 
  31. set key \1337 \29    ; Ctrl-] 
  32. set key \1054 \30    ; Ctrl-^
  33. set key \1334 \30    ; Ctrl-^
  34. set key \1500 \30    ; Ctrl-^
  35. set key \1469 \31    ; Ctrl-_
  36.  
  37. ; End
  38.  
  39.  
  40.  
  41.