desktop/mozc/emacs-mozc.install

15 lines
370 B
Plaintext
Raw Normal View History

2016-09-18 01:32:10 +08:00
post_install() {
cat << EOF
==> Add the followings into your \$HOME/.emacs.d/init.el file to enable mozc-mode.
(set-language-environment "Japanese")
(require 'mozc) ; or (load-file "/path/to/mozc.el")
(setq default-input-method "japanese-mozc")
==> Having the above settings, just type C-\\ which is bound to
==> \`toggle-input-method' by default.
EOF
}