home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / mskermit / msugold.ini < prev    next >
Text File  |  2020-01-01  |  3KB  |  94 lines

  1. ; File: KEYPAD.TAK
  2. ;
  3. ; Bob Eager   March 1991
  4. ;
  5. ; Kermit TAKE file to set up IBM enhanced keyboard to emulate a DEC
  6. ; VT100 or similar (e.g. VT2xx, VT3xx).
  7. ;
  8. ; The only difference on the keypad is that the VT keypad - (minus) is mapped
  9. ; to the F11 key on the IBM keyboard. In addition, the DO key on the LK201
  10. ; keyboard is mapped to the F12 key on the IBM keyboard.
  11. ;
  12. ; The LK201 key cluster is mapped not by position but by function (as far
  13. ; as is possible):
  14. ;
  15. ;    LK201            IBM
  16. ;    -----            ---
  17. ;    Insert            Insert
  18. ;    Remove            Delete
  19. ;    Prev Screen        Page Up
  20. ;    Next Screen        Page Down
  21. ;    Find            Home
  22. ;    Select            End
  23. ;
  24. ; The Home, End, Page Up and Page Down keys lose their normal Kermit functions
  25. ; because of the above. However, if SHIFT is held down when they are used, the
  26. ; original functions are restored.
  27. ;
  28. set display        8-bit
  29. ;
  30. ; Define keypad as near to VT100 keypad as possible (non NUMLOCKed)
  31. ;
  32.                     ; NUM LOCK as PF1 done by GOLD
  33. set key \4399        \Kpf2        ; Keypad / as PF2
  34. set key \311        \Kpf3        ; Keypad * as PF3
  35. set key \330        \Kpf4        ; Keypad - as PF4
  36. ;
  37. set key \327        \Kkp7        ; Keypad 7 as keypad 7
  38. set key \328        \Kkp8        ; Keypad 8 as keypad 8
  39. set key \329        \Kkp9        ; Keypad 9 as keypad 9
  40. set key \389        \Kkpminus    ; F11 as keypad - (not often used)
  41. ;
  42. set key \331        \Kkp4        ; Keypad 4 as keypad 4
  43. set key \332        \Kkp5        ; Keypad 5 as keypad 5
  44. set key \333        \Kkp6        ; Keypad 6 as keypad 6
  45. set key \334        \Kkpcoma    ; Keypad + as keypad ,
  46. ;
  47. set key \335        \Kkp1        ; Keypad 1 as keypad 1
  48. set key \336        \Kkp2        ; Keypad 2 as keypad 2
  49. set key \337        \Kkp3        ; Keypad 3 as keypad 3
  50. set key \4365        \Kkpenter    ; Keypad Enter as keypad Enter
  51. ;
  52. set key \338        \Kkp0        ; Keypad 0 as keypad 0
  53. set key \339        \Kkpdot        ; Keypad . as keypad .
  54. ;
  55. ; Define NUMLOCKed keypad keys to be the same as non-NUMLOCKed ones
  56. ;
  57. set key \839        \Kkp7        ; Keypad 7 as keypad 7
  58. set key \840        \Kkp8        ; Keypad 8 as keypad 8
  59. set key \841        \Kkp9        ; Keypad 9 as keypad 9
  60. ;
  61. set key \843        \Kkp4        ; Keypad 4 as keypad 4
  62. set key \844        \Kkp5        ; Keypad 5 as keypad 5
  63. set key \845        \Kkp6        ; Keypad 6 as keypad 6
  64. ;
  65. set key \847        \Kkp1        ; Keypad 1 as keypad 1
  66. set key \848        \Kkp2        ; Keypad 2 as keypad 2
  67. set key \849        \Kkp3        ; Keypad 3 as keypad 3
  68. ;
  69. set key \850        \Kkp0        ; Keypad 0 as keypad 0
  70. set key \851        \Kkpdot        ; Keypad . as keypad .
  71. ;
  72. ; Define LK201 key cluster
  73. ;
  74. set key \4434        \KdecInsert    ; Insert as Insert
  75. set key \4423        \KdecFind    ; Home as Find
  76. set key \4425        \KdecPrev    ; Page Up as Prev Screen
  77. set key \4435        \KdecRemove    ; Delete as Remove
  78. set key \4431        \KdecSelect    ; End as Select
  79. set key \4433        \KdecNext    ; Page Down as Next Screen
  80. ;
  81. ; Define shifted key cluster keys as their original local actions
  82. ;
  83. set key \4935        \Khomscn    ; Shift-Home as roll to top of memory
  84. set key \4937        \Kupscn        ; Shift-Page Up as roll to previous screen
  85. set key \4943        \Kendscn    ; Shift-End as roll to end of memory
  86. set key \4945        \Kdnscn        ; Shift-Page Down as roll to next screen
  87. ;
  88. ; Define miscellaneous keys
  89. ;
  90. set key \390        \KdecDo        ; F12 as DO
  91. ;
  92. ; End of file: KEYPAD.TAK
  93. ;
  94.