home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / archives / msk314.zip / HEBREW / HEBREW.HLP < prev    next >
Text File  |  1994-10-30  |  4KB  |  114 lines

  1. File HEBREW.HLP      HEBREW KEY MAPPINGS FOR MS-DOS KERMIT        April 1994
  2.  
  3. The HEBREW.INI file sets up MS-DOS Kermit 3.13 (or later) for Hebrew terminal
  4. emulation.  To use it, just type HEBREW at the MS-Kermit> prompt (assuming
  5. you have executed the standard MSKERMIT.INI file).  Or give a TAKE command
  6. for this file, e.g.:
  7.  
  8.   take c:\kermit\hebrew\hebrew.ini
  9.  
  10. If you always want to have Hebrew terminal emulation available, use a text
  11. editor like DOS EDIT to add the "hebrew" or "take hebrew.ini" command to your
  12. MSCUSTOM.INI file.
  13.  
  14. The HEBREW.INI file defines two macros, HKEYS and EKEYS.  HKEYS puts your
  15. keyboard in Hebrew Mode; it sets up your keyboard so unshifted letter (and
  16. certain punctuation) keys send Hebrew characters.  EKEYS puts your keyboard
  17. back in English (Roman) mode, so that these same keys send their normal
  18. codes (Roman letters, etc).
  19.  
  20. These macros can be invoked in three different ways:
  21.  
  22.  1. At the "MS-Kermit>" prompt, just type the name of the macro,
  23.     "hkeys" or "ekeys".
  24.  
  25.  2. During terminal emulation, press the F5 key to enter Hebrew mode;
  26.     press F6 to enter English mode.
  27.  
  28.  3. During terminal emulation, the host application can send special
  29.     VT-terminal escape sequences to switch Kermit between Hebrew and
  30.     English mode automatically.  (See the Hebrew section of the KERMIT.UPD
  31.     file for details).
  32.  
  33. These macros make the following key assignments, which are compatible with the
  34. Hebrew-model IBM PC keytops, and with Hebrew WordPerfect and other popular
  35. Hebrew applications.  You may refer to the WordPerfect Hebrew key diagram for
  36. easy reference or, if you have a PostScript printer, you can print the
  37. KEYMAP.PS file from this diskette.
  38.  
  39. The following are all valid Kermit commands, to make it easy for you to change
  40. them if you desire.  The HEBREW.INI file contains the same definitions, but in
  41. compressed form for rapid execution.
  42.  
  43. ; The following commands set up Hebrew keyboard mode.
  44. ; This is what the HKEYS macro does.
  45. ;
  46. SET KEY \113 /    ; q = slash (/)
  47. SET KEY \119 \39  ; w = apostrophe (')
  48. SET KEY \039 \44  ; ' = comma (,)
  49. SET KEY \047 .    ; / = period (.)
  50. SET KEY \116 \128 ; t = Hebrew letter aleph
  51. SET KEY \099 \129 ; c = Hebrew letter bet
  52. SET KEY \100 \130 ; d = Hebrew letter gimel
  53. SET KEY \115 \131 ; s = Hebrew letter dalet
  54. SET KEY \118 \132 ; v = Hebrew letter he
  55. SET KEY \117 \133 ; u = Hebrew letter waw
  56. SET KEY \122 \134 ; z = Hebrew letter zain
  57. SET KEY \106 \135 ; j = Hebrew letter chet
  58. SET KEY \121 \136 ; y = Hebrew letter tet
  59. SET KEY \104 \137 ; h = Hebrew letter yod
  60. SET KEY \108 \138 ; l = Hebrew letter terminal kaph
  61. SET KEY \102 \139 ; f = Hebrew letter kaph
  62. SET KEY \107 \140 ; k = Hebrew letter lamed
  63. SET KEY \111 \141 ; o = Hebrew letter terminal mem
  64. SET KEY \110 \142 ; n = Hebrew letter mem
  65. SET KEY \105 \143 ; i = Hebrew letter terminal nun
  66. SET KEY \098 \144 ; b = Hebrew letter nun
  67. SET KEY \120 \145 ; x = Hebrew letter samech
  68. SET KEY \103 \146 ; g = Hebrew letter ayin
  69. SET KEY \059 \147 ; ; = Hebrew letter terminal pe
  70. SET KEY \112 \148 ; p = Hebrew letter pe
  71. SET KEY \046 \149 ; . = Hebrew letter terminal zade
  72. SET KEY \109 \150 ; m = Hebrew letter zade
  73. SET KEY \101 \151 ; e = Hebrew letter qoph
  74. SET KEY \114 \152 ; r = Hebrew letter resh
  75. SET KEY \097 \153 ; a = Hebrew letter shin
  76. SET KEY \044 \154 ; , = Hebrew letter taw
  77.  
  78. ; The following commands set up English keyboard mode.
  79. ; This is what the EKEYS macro does.
  80. SET KEY \113 \113 ; q
  81. SET KEY \119 \119 ; w
  82. SET KEY \047 \047 ; /
  83. SET KEY \039 \039 ; '
  84. SET KEY \116 \116 ; t
  85. SET KEY \099 \099 ; c
  86. SET KEY \100 \100 ; d
  87. SET KEY \115 \115 ; s
  88. SET KEY \118 \118 ; v
  89. SET KEY \117 \117 ; u
  90. SET KEY \122 \122 ; z
  91. SET KEY \106 \106 ; j
  92. SET KEY \121 \121 ; y
  93. SET KEY \104 \104 ; h
  94. SET KEY \108 \108 ; l
  95. SET KEY \102 \102 ; f
  96. SET KEY \107 \107 ; k
  97. SET KEY \111 \111 ; o
  98. SET KEY \110 \110 ; n
  99. SET KEY \105 \105 ; i
  100. SET KEY \098 \098 ; b
  101. SET KEY \120 \120 ; x
  102. SET KEY \103 \103 ; g
  103. SET KEY \059 \059 ; ;
  104. SET KEY \112 \112 ; p
  105. SET KEY \046 \046 ; .
  106. SET KEY \109 \109 ; m
  107. SET KEY \101 \101 ; e
  108. SET KEY \114 \114 ; r
  109. SET KEY \097 \097 ; a
  110. SET KEY \044 \044 ; ,
  111.  
  112. ; End of HEBREW.HLP
  113.