Jochen Küpper <[EMAIL PROTECTED]> writes:

> gooliver <[EMAIL PROTECTED]> writes:

>> how to set auto-fill-mode permanently?

> Put (auto-fill-mode 1) into .Emacs. Do you know C-h f (aka
> describe-function) and C-h v (describe-variable) ?

  And 'C-h i'?

    ,----[ (info "(emacs)Auto Fill") ]
    | Auto Fill mode is a minor mode which is enabled or disabled
    | for each buffer individually.
    `----

  So only adding (auto-fill-mode 1) in his '.emacs.el' is not
enough.  He has to add this in the hook of each major mode for
which he want Auto Fill Mode enabled (and can in addition use
'turn-on-auto-fill'):

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

--drkm
_______________________________________________
Help-gnu-emacs mailing list
Help-gnu-emacs@gnu.org
http://lists.gnu.org/mailman/listinfo/help-gnu-emacs

Reply via email to