Tweak japanese/font-motoya-al version 0.0.20100921_6
[dports.git] / japanese / boiled-mozc / pkg-descr
1 boiled-mozc.el wraps("boil"s) mozc.el to offer modeless input style,
2 where you can type a Romaji sequence without activating the Mozc input
3 method and then just hit \M-o or \C-o to obtain its Hiragana and
4 Kana-Kanji conversion, respectively.
5
6 To use `boiled-mozc.el`, just add the following code into your `.emacs`:
7
8     (autoload 'boiled-mozc-rK-conv "boiled-mozc"
9       "Romaji to Kana-Kanji conversion" t)
10     (autoload 'boiled-mozc-rhkR-conv "boiled-mozc"
11       "Romaji to Hiragana conversion" t)
12     (global-set-key "\C-o" 'boiled-mozc-rK-conv)
13     (global-set-key "\M-o" 'boiled-mozc-rhkR-conv)