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

link|improve this question

73% accept rate
Do you use emacs to code? In that case you probably wouldn't want auto-fill-mode to be enabled globally. – Thomas Jul 11 '11 at 18:23
Actually I use it for latex, thinking back I probably should have put this question in superuser.com instead of stackoverflow.com – Eddy Jul 13 '11 at 11:20
feedback

2 Answers

up vote 2 down vote accepted

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:

(add-hook 'text-mode-hook '(lambda ()
                             (auto-fill-mode 1)))
link|improve this answer
How do I get it to work for latex mode? I've tried this: (add-hook 'latex-mode-hook '(lambda () (auto-fill-mode 1))) but it doesn't work – Eddy Jul 13 '11 at 11:32
1  
@Eddy: if you use AUCTeX, try 'LaTeX-mode-hook. – Thomas Jul 13 '11 at 16:46
Thanks, that fixed it for me! – Eddy Jul 14 '11 at 13:34
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

(add-hook 'text-mode-hook 'turn-on-auto-fill)

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:

(setq auto-mode-alist (cons '("*" . auto-fill-mode) auto-mode-alist))

But having it always on is irritating at times, so its better to bind the starting of the mode to a familiar key sequence

(global-set-key (kbd "C-c q") 'auto-fill-mode)
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.