diff options
author | समीर सिंह Sameer Singh <lumarzeli30@gmail.com> | 2022-06-09 19:54:10 +0530 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2022-06-11 12:03:56 +0300 |
commit | 71b17f1e940eb38e5e797edbe1eae983b6542ba0 (patch) | |
tree | 33826160658d7d11f2091ccd24fcd1e044f343ef /lisp/leim | |
parent | 46b9bfb9fc925b8cf20b0a35469f8ff6c3be5a70 (diff) | |
download | emacs-71b17f1e940eb38e5e797edbe1eae983b6542ba0.tar.gz emacs-71b17f1e940eb38e5e797edbe1eae983b6542ba0.tar.bz2 emacs-71b17f1e940eb38e5e797edbe1eae983b6542ba0.zip |
Add support for the Lepcha script (bug#55869)
* lisp/language/indian.el ("Lepcha"): New language environment.
Add composition rules for Lepcha. Add sample text and input method.
* lisp/language/misc-lang.el ("Kharoshthi"): Fix whitespace.
* lisp/international/fontset.el (script-representative-chars)
(setup-default-fontset): Support Lepcha.
* lisp/leim/quail/indian.el ("lepcha"): New input method.
* etc/HELLO: Add a Lepcha greeting.
* etc/NEWS: Announce the new language environment.
Diffstat (limited to 'lisp/leim')
-rw-r--r-- | lisp/leim/quail/indian.el | 93 |
1 files changed, 93 insertions, 0 deletions
diff --git a/lisp/leim/quail/indian.el b/lisp/leim/quail/indian.el index 6a3582e83d0..bc61a312fae 100644 --- a/lisp/leim/quail/indian.el +++ b/lisp/leim/quail/indian.el @@ -1771,4 +1771,97 @@ Full key sequences are listed below:") ("`m" ?𑌁) ("`M" ?𑌀)) +(quail-define-package + "lepcha" "Lepcha" "ᰛᰩᰵ" t "Lepcha phonetic input method. + + `\\=`' is used to switch levels instead of Alt-Gr." + nil t t t t nil nil nil nil nil t) + +(quail-define-rules + ("``" ?₹) + ("1" ?᱁) + ("`1" ?1) + ("2" ?᱂) + ("`2" ?2) + ("3" ?᱃) + ("`3" ?3) + ("4" ?᱄) + ("`4" ?4) + ("5" ?᱅) + ("`5" ?5) + ("6" ?᱆) + ("`6" ?6) + ("7" ?᱇) + ("`7" ?7) + ("8" ?᱈) + ("`8" ?8) + ("9" ?᱉) + ("`9" ?9) + ("0" ?᱀) + ("`0" ?0) + ("`\\" ?᰻) + ("`|" ?᰼) + ("`" ?ᱍ) + ("q" ?ᱍ) + ("Q" ?ᱎ) + ("`q" ?᰽) + ("`Q" ?᰾) + ("w" ?ᰢ) + ("W" ?ᱏ) + ("`w" ?᰿) + ("e" ?ᰬ) + ("r" ?ᰛ) + ("R" ?ᰥ) + ("`r" ?ᰲ) + ("t" ?ᰊ) + ("T" ?ᰋ) + ("`t" ?ᰳ) + ("y" ?ᰚ) + ("Y" ?ᰤ) + ("u" ?ᰪ) + ("U" ?ᰫ) + ("i" ?ᰧ) + ("o" ?ᰨ) + ("O" ?ᰩ) + ("p" ?ᰎ) + ("P" ?ᰏ) + ("`p" ?ᰐ) + ("`P" ?ᰱ) + ("a" ?ᰦ) + ("A" ?ᰣ) + ("s" ?ᰠ) + ("S" ?ᰡ) + ("d" ?ᰌ) + ("f" ?ᰑ) + ("F" ?ᰒ) + ("g" ?ᰃ) + ("G" ?ᰄ) + ("h" ?ᰝ) + ("H" ?ᰞ) + ("j" ?ᰈ) + ("k" ?ᰀ) + ("K" ?ᰁ) + ("`k" ?ᰂ) + ("`K" ?ᰭ) + ("l" ?ᰜ) + ("L" ?ᰯ) + ("z" ?ᰉ) + ("Z" ?ᰅ) + ("`z" ?ᰴ) + ("`Z" ?ᰵ) + ("x" ?ᰶ) + ("X" ?᰷) + ("c" ?ᰆ) + ("C" ?ᰇ) + ("`c" #x200C) ; ZWNJ + ("v" ?ᰟ) + ("b" ?ᰓ) + ("B" ?ᰔ) + ("n" ?ᰍ) + ("N" ?ᰰ) + ("m" ?ᰕ) + ("M" ?ᰖ) + ("`m" ?ᰮ)) + +(provide 'indian) ;;; indian.el ends here |