-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Simon Erkelens
committed
Oct 29, 2019
1 parent
a9c832c
commit 25c9dac
Showing
2 changed files
with
28 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,9 @@ | ||
# m17n-ibus-maori | ||
|
||
Support for Māori macron characters | ||
|
||
Add the `mim` file to `~/.m17n.d` and restart the iBus daemon (or log in and out). | ||
|
||
You should now be able to select English => Māori as your language input. | ||
|
||
Using macrons now can be done by using backtick plus the letter you want to write., e.g. `` `a`` for ā |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
(input-method en maori) | ||
(description | ||
"Māori keyboard modifiers" | ||
) | ||
(title "mi-NZ") | ||
(map | ||
(trans | ||
("`A" "Ā") ("`a" "ā") | ||
("`E" "Ē") ("`e" "ē") | ||
("`I" "Ī") ("`i" "ī") | ||
("`O" "Ō") ("`o" "ō") | ||
("`U" "Ū") ("`u" "ū"))) | ||
|
||
(state | ||
(init | ||
(trans))) | ||
|
||
;; Local Variables: | ||
;; coding: utf-8 | ||
;; mode: lisp | ||
;; End: |