home *** CD-ROM | disk | FTP | other *** search
/ Simtel MSDOS 1992 December / simtel1292_SIMTEL_1292_Walnut_Creek.iso / msdos / pibterm / pibt41e1.arc / DECVAXE.FNC < prev    next >
Text File  |  1988-02-28  |  2KB  |  86 lines

  1. *
  2. *     VT100 function key definitions for extended keyboard.
  3. *     Needs to have "recognize extended keypad" turned ON.
  4. *
  5. *     Cursor keys are those in separate cursor keypad.
  6. *
  7. *     PF1 = main keypad /
  8. *     PF2 = extra keypad Page Up
  9. *     PF3 = extra keypad Page Dn
  10. *     PF4 = main keypad *
  11. *
  12. *     The reason for defining the PF-keys "out of order" is because
  13. *     access to PF1 + other main keypad keys is easier that way.
  14. *     PF1 is the "gold" key for editors like EDT, and it's less
  15. *     of an awkward stretch to put it on the main keypad.
  16. *
  17. *     The rest of the numeric keypad acts just like VT100 keypad,
  18. *     except that the '+' is like the '-' on the VT100 keypad.
  19. *
  20. *     Symbolically, here are the correspondences, with PC name on
  21. *     top and VT100 name on bottom.
  22. *
  23. *      +---------+--------+--------+
  24. *      | Insert  |  Home  | Page Up|
  25. *      |         |        | (PF2)  |
  26. *      +---------+--------+--------+
  27. *      | Delete  |  End   | Page Dn|
  28. *      |         |        | (PF3)  |
  29. *      +---------+--------+--------+
  30. *
  31. *
  32. *                +--------+
  33. *                |   Up   |
  34. *                |  (Up)  |
  35. *      +---------+--------+--------+
  36. *      |  Left   |  Down  | Right  |
  37. *      | (Left)  | (Down) | (Right)|
  38. *      +---------+--------+--------+
  39. *
  40. *      +---------+--------+--------+--------+
  41. *      | Num Lock|  /     |   *    |   -    |
  42. *      |         |  (PF1) | (PF4)  |  (-)   |
  43. *      +---------+--------+--------+--------+
  44. *      |    7    |   8    |   9    |        |
  45. *      |   (7)   |  (8)   |  (9)   |   +    |
  46. *      +---------+--------+--------+        +
  47. *      |    4    |   5    |   6    |  (,)   |
  48. *      |   (4)   |  (5)   |  (6)   |        |
  49. *      +---------+--------+--------+--------+
  50. *      |    1    |   2    |   3    |        |
  51. *      |   (1)   |  (2)   |  (3)   | Enter  |
  52. *      +---------+--------+--------+        +
  53. *      |    0             |   .    |(Enter) |
  54. *      |   (0)            |  (.)   |        |
  55. *      +---------+--------+--------+--------+
  56. *
  57. *     <CTRL>PgUp and <CTRL>PgDn on the numeric keypad initiate
  58. *     Kermit sends and gets, respectively, both in binary mode.
  59. *
  60. XPU=^[OQ
  61. XPD=^[OR
  62. K/=^[OP
  63. K*=^[OS
  64. K7=^[Ow
  65. K8=^[Ox
  66. K9=^[Oy
  67. K-=^[Om
  68. K4=^[Ot
  69. K5=^[Ou
  70. K6=^[Ov
  71. K+=^[Ol
  72. K1=^[Oq
  73. K2=^[Or
  74. K3=^[Os
  75. KE=^[OM
  76. K0=^[Op
  77. K.=^[On
  78. XU=^[[A
  79. XL=^[[D
  80. XR=^[[C
  81. XD=^[[B
  82. CK9=@S@/db/
  83. CK3=@R@/db/
  84. CBS=^H
  85. BS=
  86.