summaryrefslogtreecommitdiff
path: root/lisp/leim/quail/cham.el
blob: d12ae6cddf04061dae623e85ed8dd5b7e22a1ed6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
;;; cham.el --- Quail package for inputting Cham characters  -*- coding: utf-8; lexical-binding:t -*-

;; Copyright (C) 2021 Free Software Foundation, Inc.

;; Author: Eli Zaretskii <eliz@gnu.org>
;; Keywords: i18n

;; This file is part of GNU Emacs.

;; GNU Emacs is free software: you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
;; the Free Software Foundation, either version 3 of the License, or
;; (at your option) any later version.

;; GNU Emacs is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
;; GNU General Public License for more details.

;; You should have received a copy of the GNU General Public License
;; along with GNU Emacs.  If not, see <https://www.gnu.org/licenses/>.

;;; Commentary:

;; This file defines the following Cham keyboards:
;;
;; - QWERTY-based Cham.

;;; Code:

(require 'quail)

(quail-define-package
 "cham" "Cham" "ꨌꩌ" t
 "A QWERTY-based Cham input method."
 nil t nil nil t nil nil nil nil nil t)

(quail-define-rules
 ("a" ?ꨀ)
 ("A" ?ꨄ)
 ("i" ?ꨁ)
 ("u" ?ꨂ)
 ("e" ?ꨃ)
 ("o" ?ꨅ)
 ("k" ?ꨆ)
 ("K" ?ꨇ)
 ("g" ?ꨈ)
 ("G" ?ꨉ)
 ("q" ?ꨊ)
 ("Q" ?ꨋ)
 ("c" ?ꨌ)
 ("C" ?ꨍ)
 ("j" ?ꨎ)
 ("J" ?ꨏ)
 ("z" ?ꨐ)
 ("Z" ?ꨑ)
 ("zz" ?ꨒ)
 ("t" ?ꨓ)
 ("T" ?ꨔ)
 ("d" ?ꨕ)
 ("D" ?ꨖ)
 ("n" ?ꨗ)
 ("N" ?ꨘ)
 ("p" ?ꨚ)
 ("P" ?ꨛ)
 ("f" ?ꨜ)
 ("b" ?ꨝ)
 ("B" ?ꨞ)
 ("m" ?ꨟ)
 ("M" ?ꨠ)
 ("mm" ?ꨡ)
 ("y" ?ꨢ)
 ("r" ?ꨣ)
 ("l" ?ꨤ)
 ("w" ?ꨥ)
 ("v" ?ꨥ)
 ("x" ?ꨦ)
 ("s" ?ꨧ)
 ("h" ?ꨨ)
 ("kk" ?ꩀ)
 ("ww" ?ꩁ)
 ("vv" ?ꩁ)
 ("qq" ?ꩂ)
 ("cc" ?ꩄ)
 ("tt" ?ꩅ)
 ("nn" ?ꩆ)
 ("pp" ?ꩇ)
 ("yy" ?ꩈ)
 ("rr" ?ꩉ)
 ("ll" ?ꩊ)
 ("gg" ?ꩊ)
 ("xx" ?ꩋ)
 ("." ?ꩌ)
 ("H" ?ꩍ)
 ("0" ?꩐)
 ("1" ?꩑)
 ("2" ?꩒)
 ("3" ?꩓)
 ("4" ?꩔)
 ("5" ?꩕)
 ("6" ?꩖)
 ("7" ?꩗)
 ("8" ?꩘)
 ("9" ?꩙)
 ("!" ?ꨩ)
 ("#" ?ꨪ)
 ("$" ?ꨫ)
 ("^" ?ꨬ)
 ("&" ?ꨮ)
 ("`" ?꩜)
 ("=" ?ꨱ)
 ("-" ?ꩃ)
 ("~" ?꩟)
 )

;;; cham.el ends here