1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-15 10:30:25 -08:00

* lisp/leim/quail/georgian.el: Add georgian-qwerty input method

This commit is contained in:
Nick Drozd 2019-07-13 12:03:36 -05:00 committed by Eli Zaretskii
parent 7c30ad184f
commit 3ca5453093

View file

@ -22,8 +22,12 @@
;;; Commentary:
;; Georgian input following the Yudit map from Mark Leisher
;; <mleisher@crl.nmsu.edu>.
;; This file defines the following Georgian keyboards:
;;
;; - Georgian input following the Yudit map from Mark Leisher
;; <mleisher@crl.nmsu.edu>.
;;
;; - QWERTY-based Georgian.
;;; Code:
@ -80,4 +84,53 @@
("e1" ?) ;; Letter not in Unicode (private use code).
)
(quail-define-package
"georgian-qwerty" "Georgian" "" t
"Georgian input based on QWERTY keyboard."
nil t nil nil t nil nil nil nil nil t)
(quail-define-rules
("a" ?ა)
("b" ?ბ)
("g" ?გ)
("d" ?დ)
("e" ?ე)
("v" ?ვ)
("z" ?ზ)
("T" ?თ)
("i" ?ი)
("k" ?კ)
("l" ?ლ)
("m" ?მ)
("n" ?ნ)
("o" ?ო)
("p" ?პ)
("J" ?ჟ)
("r" ?რ)
("s" ?ს)
("t" ?ტ)
("u" ?უ)
("f" ?ფ)
("q" ?ქ)
("R" ?ღ)
("y" ?)
("S" ?შ)
("C" ?ჩ)
("c" ?ც)
("Z" ?ძ)
("w" ?წ)
("W" ?ჭ)
("x" ?ხ)
("j" ?ჯ)
("h" ?ჰ)
("X" ?ჴ)
("H" ?ჱ)
("K" ?ჵ)
("I" ?ჲ)
("V" ?ჳ)
("F" ?ჶ)
("Y" ?ჸ)
("G" ?ჷ)
)
;;; georgian.el ends here