emacs/lisp/leim/quail/tifinagh.el

68 lines
1.1 KiB
EmacsLisp
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

;;; tifinagh.el --- Quail package for inputting Tifinagh -*- coding: utf-8; lexical-binding:t -*-
;; Copyright (C) 2024 Free Software Foundation, Inc.
;; Author: Adam Oudad <adam.oudad@gmail.com>
;; Keywords: mule, input method, Tifinagh
(require 'quail)
(quail-define-package
"tifinagh" "Tininagh" "" nil "Tifinagh input method.
Based on Tifinagh table in X Keyboard Configuration DB.
" nil t t t t nil nil nil nil nil t)
;; FIXME: This doesn't cover all of the codepoints that Unicode has
;; defined for the Tifinagh script.
(quail-define-rules
("Q" ?ⵈ)
("W" ?ⵯ)
("R" ?)
("T" ?ⵟ)
("P" ?ⵒ)
("S" ?ⵚ)
("D" ?)
("G" ?ⴶ)
("H" ?ⵂ)
("J" ?ⵌ)
("K" ?ⴾ)
("Z" ?ⵥ)
("X" ?)
("C" ?ⵞ)
("V" ?ⵗ)
("q" ?ⵇ)
("w" ?ⵡ)
("e" ?ⴻ)
("r" ?)
("t" ?ⵜ)
("y" ?ⵢ)
("u" ?ⵓ)
("i" ?ⵉ)
("o" ?ⵄ)
("p" ?ⵃ)
("a" ?ⴰ)
("s" ?ⵙ)
("d" ?ⴷ)
("f" ?ⴼ)
("g" ?ⴳ)
("h" ?ⵀ)
("j" ?ⵊ)
("k" ?ⴽ)
("l" ?ⵍ)
("z" ?ⵣ)
("x" ?ⵅ)
("c" ?ⵛ)
("v" ?ⵖ)
("b" ?ⴱ)
("n" ?)
("m" ?ⵎ)
)
;;; tifinagh.el ends here