Mercurial > emacs
annotate leim/quail/hebrew.el @ 53505:780b9eb8b58e
hooks.texi (Standard Hooks): Add before-save-hook.
files.texi (Saving Buffers): Likewise.
author | Simon Josefsson <jas@extundo.com> |
---|---|
date | Mon, 05 Jan 2004 18:20:27 +0000 |
parents | 695cf19ef79e |
children | 230141e6ec9f 375f2633d815 |
rev | line source |
---|---|
48309 | 1 ;;; hebrew.el --- Quail package for inputting Hebrew characters -*-coding: iso-2022-7bit;-*- |
24039 | 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 | |
38453
519983161a46
Some fixes to follow lisp coding conventions and typo fixes.
Pavel Janík <Pavel@Janik.cz>
parents:
24039
diff
changeset
|
25 ;;; Commentary: |
519983161a46
Some fixes to follow lisp coding conventions and typo fixes.
Pavel Janík <Pavel@Janik.cz>
parents:
24039
diff
changeset
|
26 |
519983161a46
Some fixes to follow lisp coding conventions and typo fixes.
Pavel Janík <Pavel@Janik.cz>
parents:
24039
diff
changeset
|
27 ;;; Code: |
519983161a46
Some fixes to follow lisp coding conventions and typo fixes.
Pavel Janík <Pavel@Janik.cz>
parents:
24039
diff
changeset
|
28 |
24039 | 29 (require 'quail) |
30 | |
31 (quail-define-package | |
32 "hebrew" "Hebrew" ",Hr(B" nil "Hebrew (ISO 8859-8) input method. | |
33 | |
34 Based on Hebrew typewriter keys. | |
35 Hebrew letters are assigned to lowercases. | |
36 " nil t t t t nil nil nil nil nil t) | |
37 | |
38 ;; 1! 2@ 3# 4$ 5% 6^ 7& 8* 9( 0) _- += ~; | |
39 ;; /Q 'W ,Hw(BE ,Hx(BR ,H`(BT ,Hh(BY ,He(BU ,Ho(BI ,Hm(BO ,Ht(BP {[ {] | |
40 ;; ,Hy(BA ,Hc(BS ,Hb(BD ,Hk(BF ,Hr(BG ,Hi(BH ,Hg(BJ ,Hl(BK ,Hj(BL :,Hs(B ", |\ | |
41 ;; ,Hf(BZ ,Hq(BX ,Ha(BC ,Hd(BV ,Hp(BB ,Hn(BN ,Hv(BM <,Hz(B >,Hu(B ?. | |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
48309
diff
changeset
|
42 ;; |
24039 | 43 |
44 (quail-define-rules | |
45 ("`" ?\;) | |
46 ("q" ?/) | |
47 ("w" ?') | |
48 ("e" ?,Hw(B) | |
49 ("r" ?,Hx(B) | |
50 ("t" ?,H`(B) | |
51 ("y" ?,Hh(B) | |
52 ("u" ?,He(B) | |
53 ("i" ?,Ho(B) | |
54 ("o" ?,Hm(B) | |
55 ("p" ?,Ht(B) | |
56 ("a" ?,Hy(B) | |
57 ("s" ?,Hc(B) | |
58 ("d" ?,Hb(B) | |
59 ("f" ?,Hk(B) | |
60 ("g" ?,Hr(B) | |
61 ("h" ?,Hi(B) | |
62 ("j" ?,Hg(B) | |
63 ("k" ?,Hl(B) | |
64 ("l" ?,Hj(B) | |
65 (";" ?,Hs(B) | |
66 ("z" ?,Hf(B) | |
67 ("x" ?,Hq(B) | |
68 ("c" ?,Ha(B) | |
69 ("v" ?,Hd(B) | |
70 ("b" ?,Hp(B) | |
71 ("n" ?,Hn(B) | |
72 ("m" ?,Hv(B) | |
73 ("," ?,Hz(B) | |
74 ("." ?,Hu(B) | |
75 ("/" ?.) | |
38453
519983161a46
Some fixes to follow lisp coding conventions and typo fixes.
Pavel Janík <Pavel@Janik.cz>
parents:
24039
diff
changeset
|
76 ("'" ?,)) |
519983161a46
Some fixes to follow lisp coding conventions and typo fixes.
Pavel Janík <Pavel@Janik.cz>
parents:
24039
diff
changeset
|
77 |
52401 | 78 ;;; arch-tag: 771b887d-15af-4a4d-b4ce-a4a86f5ca0cf |
38453
519983161a46
Some fixes to follow lisp coding conventions and typo fixes.
Pavel Janík <Pavel@Janik.cz>
parents:
24039
diff
changeset
|
79 ;;; hebrew.el ends here |