Go to the first, previous, next, last section, table of contents.

Auto-Fill モードをデフォルトで設定したいのですが, どうしたらよいですか?

Auto-Fill モードをバッファに対して設定するには, "M-x auto-fill-mode" と入力します. テキスト・モードに対して, Auto-Fill モードを設定するには次のようにします:

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

すべてのモードに対して設定するには次のようにします:

  (setq-default auto-fill-hook 'do-auto-fill)

Go to the first, previous, next, last section, table of contents.