
Tweet実は前回のはうまく使えていません。というのも、どうもinline patchの方が23.2では良くないらしく、頻繁に落ちるからです。という訳なので、typesterさんのfull screen patchだけを当てていたのですが、今度はIME経由のShiftキー押下の記号が全部半角で入るという悲しいことに。なので、これまたtypesterさんのfix-shiftmodifier-with-ime patchを当てたものを使ってみることにします。
1 2 3 4 5 6 7 8 9 10 11 | % wget http://ftp.gnu.org/pub/gnu/emacs/emacs-23.2.tar.gz % wget http://github.com/downloads/typester/emacs/feature-fullscreen.patch % wget http://github.com/downloads/typester/emacs/fix-shiftmodifier-with-ime.patch % tar zxvf emacs-23.2.tar.gz % cd emacs-23.1 % patch -p1 < ../feature-fullscreen.patch % patch -p1 < ../fix-shiftmodifier-with-ime.patch % ./configure --with-ns --without-x % make bootstrap % make install % open nextstep/Emacs.app |
基本的に前回と同じです。これで全角括弧とかが入力できるようになりました。
Tags: Emacs, Mac OS XTweetEmacsも23.2になったということで、そろそろ移行してみることにしました。下記の参考文献をもとに、各種パッチを当ててビルドしていきます。
1 2 3 4 5 6 7 8 9 10 11 12 | % wget http://ftp.gnu.org/pub/gnu/emacs/emacs-23.2.tar.gz % wget http://jaist.dl.sourceforge.jp/macemacsjp/47194/inline_patch-23.1.96-b2.tar.gz % wget http://github.com/downloads/typester/emacs/feature-fullscreen.patch % tar zxvf inline_patch-23.1.96-b2.tar.gz % tar zxvf emacs-23.2.tar.gz % cd emacs-23.1 % patch -p0 < ../inline_patch-23.1.96-b2/emacs-inline.patch % patch -p1 < ../feature-fullscreen.patch % ./configure --with-ns --without-x % make bootstrap % make install % open nextstep/Emacs.app |
あとはここを参考にフォントの設定をして完了。あとはちまちま設定を追加していくのみですかね。
