yc という Cygwin に附属の emacs で使える日本語入力の手段を見つけて、 それが結構良さそうなので、 Meadow の置き換えが出来るかもしれない。
個人的には Options → Mule → Set Font/Fontset → Misc で 7x14 を選んでいる。
Emacs がたくさんあるので、Emacs の設定ファイル .emacs の中で、 自動判定して分岐する必要が生じる。次のような感じ
(cond ((string-match "21.4.*" emacs-version) (load-file "~/.xemacs.el") ) ((string-match "22.0.990.1" emacs-version) (load-file "~/.meadow") ) ((string-match "21.2.1" emacs-version) (load-file "~/.emacs-21") ) ) |
.emacs-21 |
(load "yc-5.0.0") (global-yc-mode 1) (setq yc-use-color t) (setq yc-use-fence (not (eq window-system 'x))) (global-set-key "\M-\ " 'yc-mode) (set-terminal-coding-system 'sjis) (set-buffer-file-coding-system 'sjis) (set-keyboard-coding-system 'sjis) |
現在、C-¥では上手く行かなくて、C-j で変換している。
せっかく一度 yc を動くようにしたのに、パーにしてしまった。
mkdir /usr/share/emacs/site-lisp/yc-5.0.0 cp -p yc-5.0.0.el yc-5.0.0.elc /usr/share/emacs/site-lisp/yc-5.0.0 cp -p yc-4.0.13/icanna.exe /usr/local/bin |
.emacs かどこかで |
(load "yc-5.0.0") (global-yc-mode 1) (setq yc-use-color t) (setq yc-use-fence (not (eq window-system 'x))) (global-set-key "\M-\ " 'yc-mode) |