« 2005年05月 | メイン | 2005年08月 »
2005年06月06日
emacs の自動改行がうっとおしいので切り替えたい
[ カテゴリ : memo - CUI環境 ]
Vine の .emacs.el を参考にして、 cygwin の .emacs を書いているので、Text-mode での auto-fill-mode がオンになっていて、結構面倒だった。
auto-fill モードで起動しちゃってたら
M-x auto-fill-mode
でトグルできる。
あらかじめ .emacs あたりに書くなら
(setq text-mode-hook 'turn-off-auto-fill)
もちろん、別途 'turn-on-auto-fill 定義があればコメントアウト(Vine のはある)
text-mode 以外でも同様にいつでも off にしたい場合はどうすりゃいいのか必要になったら調べてみたい。