1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-11-26 07:33:47 +00:00
emacs/leim/quail/arabic.el
Eli Zaretskii 76580a68c2 Add missing keys that exist on the Arabic X keyboard. Don't insert
Lam-alef ligatures from the Arabic Presentation Forms ranges; instead,
separate Lam-Alef ligatures into a list of two letters (Lam and a
suitable Alef).
2009-08-21 14:55:56 +00:00

117 lines
2.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.

;;; arabic.el --- Quail package for inputting Arabic -*- coding: utf-8;-*-
;; Copyright (C) 2007, 2008, 2009 Free Software Foundation, Inc.
;; Author: James Cloos <cloos@jhcloos.com>
;; Keywords: mule, input method, Arabic
;; This file is part of GNU Emacs.
;; GNU Emacs 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.
;; GNU Emacs 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 GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
;;; Commentary:
;;; Code:
(require 'quail)
(quail-define-package
"arabic" "Arabic" "ع" nil "Arabic input method.
Based on Arabic table in X Keyboard Configuration DB.
" nil t t t t nil nil nil nil nil t)
;; ذّ 1! 2@ 3# 4$ 5% 6^ 7& 8* 9) 0( -_ =+
;; ضَ صً ثُ قٌ فﻹ غإ ع` ه÷ خ× ح؛ ج< د> <>
;; شِ سٍ ي] ب[ لﻷ اأ تـ ن، م/ ك: ط"
;; ئ~ ءْ ؤ} ر{ ﻻﻵ ىآ ة' و, ز. ظ؟
;;
(quail-define-rules
("`" )
("~" )
("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" ?')
("<" ?,)
(">" ?.)
("?" )
("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" )
("," )
("." )
("/" ))
;; arch-tag: 7e81e2af-5ea5-417f-bfe7-dfa6fd955cb5
;;; arabic.el ends here