24039
|
1 ;; Quail package for inputting Hebrew characters.
|
|
2
|
|
3 ;; Copyright (C) 1998 Electrotechnical Laboratory, JAPAN.
|
|
4 ;; Licensed to the Free Software Foundation.
|
|
5
|
|
6 ;; Keywords: mule, input method, Hebrew
|
|
7
|
|
8 ;; This file is part of GNU Emacs.
|
|
9
|
|
10 ;; GNU Emacs is free software; you can redistribute it and/or modify
|
|
11 ;; it under the terms of the GNU General Public License as published by
|
|
12 ;; the Free Software Foundation; either version 2, or (at your option)
|
|
13 ;; any later version.
|
|
14
|
|
15 ;; GNU Emacs is distributed in the hope that it will be useful,
|
|
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
18 ;; GNU General Public License for more details.
|
|
19
|
|
20 ;; You should have received a copy of the GNU General Public License
|
|
21 ;; along with GNU Emacs; see the file COPYING. If not, write to the
|
|
22 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
23 ;; Boston, MA 02111-1307, USA.
|
|
24
|
|
25 (require 'quail)
|
|
26
|
|
27 (quail-define-package
|
|
28 "hebrew" "Hebrew" ",Hr(B" nil "Hebrew (ISO 8859-8) input method.
|
|
29
|
|
30 Based on Hebrew typewriter keys.
|
|
31 Hebrew letters are assigned to lowercases.
|
|
32 " nil t t t t nil nil nil nil nil t)
|
|
33
|
|
34 ;; 1! 2@ 3# 4$ 5% 6^ 7& 8* 9( 0) _- += ~;
|
|
35 ;; /Q 'W ,Hw(BE ,Hx(BR ,H`(BT ,Hh(BY ,He(BU ,Ho(BI ,Hm(BO ,Ht(BP {[ {]
|
|
36 ;; ,Hy(BA ,Hc(BS ,Hb(BD ,Hk(BF ,Hr(BG ,Hi(BH ,Hg(BJ ,Hl(BK ,Hj(BL :,Hs(B ", |\
|
|
37 ;; ,Hf(BZ ,Hq(BX ,Ha(BC ,Hd(BV ,Hp(BB ,Hn(BN ,Hv(BM <,Hz(B >,Hu(B ?.
|
|
38 ;;
|
|
39
|
|
40 (quail-define-rules
|
|
41 ("`" ?\;)
|
|
42 ("q" ?/)
|
|
43 ("w" ?')
|
|
44 ("e" ?,Hw(B)
|
|
45 ("r" ?,Hx(B)
|
|
46 ("t" ?,H`(B)
|
|
47 ("y" ?,Hh(B)
|
|
48 ("u" ?,He(B)
|
|
49 ("i" ?,Ho(B)
|
|
50 ("o" ?,Hm(B)
|
|
51 ("p" ?,Ht(B)
|
|
52 ("a" ?,Hy(B)
|
|
53 ("s" ?,Hc(B)
|
|
54 ("d" ?,Hb(B)
|
|
55 ("f" ?,Hk(B)
|
|
56 ("g" ?,Hr(B)
|
|
57 ("h" ?,Hi(B)
|
|
58 ("j" ?,Hg(B)
|
|
59 ("k" ?,Hl(B)
|
|
60 ("l" ?,Hj(B)
|
|
61 (";" ?,Hs(B)
|
|
62 ("z" ?,Hf(B)
|
|
63 ("x" ?,Hq(B)
|
|
64 ("c" ?,Ha(B)
|
|
65 ("v" ?,Hd(B)
|
|
66 ("b" ?,Hp(B)
|
|
67 ("n" ?,Hn(B)
|
|
68 ("m" ?,Hv(B)
|
|
69 ("," ?,Hz(B)
|
|
70 ("." ?,Hu(B)
|
|
71 ("/" ?.)
|
|
72 ("'" ?,)
|
|
73 )
|