From e667d1ee9acffa1b78b191ab3a53b2c9a1055785 Mon Sep 17 00:00:00 2001 From: JSDurand Date: Wed, 6 May 2026 23:54:07 +0800 Subject: Ithkuil-related * ibuffer.el (durand-ithkuil): Filter for Ithkuil-related buffers. (durand-bongo-set-filter): Add the above filter. * input-conf.el (durand-input-method-list): Add input method for Ithkuil and Hebrew. (durand-transient-punct, global-map): Add a key-binding for transiently inputting Chinese punctuation. * ithkuil.el: Define an input method for inputting transliteration of Ithkuil. --- ithkuil.el | 67 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 67 insertions(+) create mode 100644 ithkuil.el (limited to 'ithkuil.el') diff --git a/ithkuil.el b/ithkuil.el new file mode 100644 index 0000000..e409a91 --- /dev/null +++ b/ithkuil.el @@ -0,0 +1,67 @@ +;;; ithkuil.el --- Input-method for The New Ithkuil Language -*- lexical-binding: t; -*- + +;; Copyright (C) 2026 Jean Sévère Durand + +;; Author: Jean Sévère Durand +;; Keywords: emulations, wp, abbrev + +;; This program 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. + +;; This program 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 this program. If not, see . + +;;; Commentary: + +;; My input-method for TNIL. + +;;; Code: + +(quail-define-package + "ithkuil" "TNIL" "TNIL" t "TODO") + +(quail-defrule ":a" ?ä) +(quail-defrule ":e" ?ë) +(quail-defrule ":o" ?ö) +(quail-defrule ":u" ?ü) + +(quail-defrule ";a" ?â) +(quail-defrule ";e" ?ê) +(quail-defrule ";o" ?ô) +(quail-defrule ";u" ?û) + +(quail-defrule "/a" ?á) +(quail-defrule "/e" ?é) +(quail-defrule "/i" ?í) +(quail-defrule "/o" ?ó) +(quail-defrule "/u" ?ú) + +(quail-defrule "\\i" ?ì) +(quail-defrule "\\u" ?ù) + +(quail-defrule ",'" ?\’) +(quail-defrule ",t" ?ţ) +(quail-defrule ",d" ?ḑ) +(quail-defrule ",c" ?ç) +(quail-defrule ",l" ?ļ) + +(quail-defrule ">d" (vector "d͕")) +(quail-defrule ">l" (vector "l͕")) + +(quail-defrule ";s" ?š) +(quail-defrule ";z" ?ž) +(quail-defrule ";c" ?č) +(quail-defrule ";n" ?ň) +(quail-defrule ";r" ?ř) + +(quail-defrule ".z" ?ẓ) + +(provide 'ithkuil) +;;; ithkuil.el ends here -- cgit v1.2.3-18-g5258