summarylogtreecommitdiffstats
path: root/emacs-mozc.install
blob: e8fd365813332fe017d7dcdfe3fc22ba906c5d87 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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
}