uim.el settings of Emacs 22.2

Posted On November 4, 2008

Filed under emacs, Ubuntu
Tags: ,

Comments Dropped leave a response

.emacs

(require 'uim)
(global-set-key "\C-o" 'uim-mode)
(setq uim-default-im-engine "anthy")
(setq uim-candidate-display-inline t)
(setq uim-default-im-prop '("action_anthy_hiragana" "action_anthy_roma"))
(uim-reset-keymap)
(setq default-input-method "japanese-anthy-uim")

If you input with kana-map,
change l.5 as
(setq uim-default-im-prop '("action_anthy_hiragana" "action_anthy_kana"))

\C-o ; launch uim
\C-\ ; change alphabet or kana

citation(JP):
http://uim.googlecode.com/svn/trunk/emacs/README.ja

Leave a comment