1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-15 10:30:25 -08:00
emacs/lisp/leim/quail/tifinagh.el
Paul Eggert 4da38c6321 Update copyright year to 2025
Run "TZ=UTC0 admin/update-copyright".
2025-01-01 07:39:17 +00:00

67 lines
1.1 KiB
EmacsLisp
Raw 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-2025 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