1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-11-24 07:20:37 +00:00
emacs/lisp/leim/quail/arabic.el

116 lines
2.1 KiB
EmacsLisp
Raw Permalink Normal View History

;;; arabic.el --- Quail package for inputting Arabic -*- coding: utf-8; lexical-binding:t -*-
2007-04-26 00:55:56 +00:00
2024-01-02 01:47:10 +00:00
;; Copyright (C) 2007-2024 Free Software Foundation, Inc.
;; Author: James Cloos <cloos@jhcloos.com>
2007-04-26 00:55:56 +00:00
;; Keywords: mule, input method, Arabic
;; This file is part of GNU Emacs.
;; GNU Emacs is free software: you can redistribute it and/or modify
2007-04-26 00:55:56 +00:00
;; 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.
2007-04-26 00:55:56 +00:00
;; 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 <https://www.gnu.org/licenses/>.
2007-04-26 00:55:56 +00:00
;;; 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( -_ =+
;; ضَ صً ثُ قٌ فﻹ غإ ع` ه÷ خ× ح؛ ج< د> <>
;; شِ سٍ ي] ب[ لﻷ اأ تـ ن، م/ ك: ط"
;; ئ~ ءْ ؤ} ر{ ﻻﻵ ىآ ة' و, ز. ظ؟
2007-04-26 00:55:56 +00:00
;;
(quail-define-rules
("`" )
("~" )
2007-04-26 00:55:56 +00:00
("Q" )
("W" )
("E" )
("R" )
("T" ["لإ"])
2007-04-26 00:55:56 +00:00
("Y" )
("U" ?`)
("I" )
("O" ?×)
("P" )
("{" ?<)
("}" ?>)
2007-04-26 00:55:56 +00:00
("A" )
("S" )
("D" ?\])
("F" ?\[)
("G" ["لأ"])
2007-04-26 00:55:56 +00:00
("H" )
("J" )
("K" )
("L" ?/)
("Z" ?~)
("X" )
("C" ?})
("V" ?{)
("B" ["لآ"])
2007-04-26 00:55:56 +00:00
("N" )
("M" ?')
("<" ?,)
(">" ?.)
("?" )
("q" )
("w" )
("e" )
("r" )
("t" )
("y" )
("u" )
("i" ?ه)
("o" )
("p" )
("[" )
("]" )
2007-04-26 00:55:56 +00:00
("a" )
("s" )
("d" )
("f" )
("g" )
("h" ?ا)
("j" )
("k" )
("l" )
(";" )
("'" )
2007-04-26 00:55:56 +00:00
("z" )
("x" )
("c" )
("v" )
("b" ["لا"])
2007-04-26 00:55:56 +00:00
("n" )
("m" )
("," )
("." )
("/" ))
2007-04-26 00:55:56 +00:00
;;; arabic.el ends here