I want to enable line-wrapping without having to type 'M-x auto-fill-mode' everytime I start emacs. I've tried putting (setq auto-fill-mode 1) and (auto-fill-mode 1) in the .emacs file, but neither work. Why is this, and how do I fix it?
Thanks
|
feedback
|
|
It is a minor-mode so you need to enable it for the modes where you want it used. So, for example, if you want auto-fill-mode enabled in text mode, you need to add the following to your .emacs file:
| |||||||||
feedback
|
|
auto-fill-mode is a minor mode so (setq auto-fill-mode 1) wont start it. You can add a hook to start auto-fill-mode with the text-mode (with which it is normally used) or any other mode you normally use it with, by doing
Alternatively, if you want the auto-fill-mode on for all the files you edit. You can start it when any type of file is opened with:
But having it always on is irritating at times, so its better to bind the starting of the mode to a familiar key sequence
| |||
|
feedback
|
auto-fill-modeto be enabled globally. – Thomas Jul 11 '11 at 18:23