text-mode
Emacs を起動して次のメッセージを取り除くにはどうすればよいですか?
;; This buffer is for notes you don't want to save, and for Lisp evaluation.
;; If you want to create a file, visit that file with C-x C-f,
;; then enter the text in that file's own buffer.
text-mode
Emacs を起動して次のメッセージを取り除くにはどうすればよいですか?
;; This buffer is for notes you don't want to save, and for Lisp evaluation.
;; If you want to create a file, visit that file with C-x C-f,
;; then enter the text in that file's own buffer.
開始メッセージを取り除くには、initial-scratch-message
変数を次のように設定します。""
(setq initial-scratch-message "")
テキスト モードでスクラッチ バッファーを開始するには、initial-major-mode
変数を使用する必要があります。
(setq initial-major-mode 'text-mode)
特定のメジャーモードを開始するときに自動モードを設定するには、モードフックにイベントを追加します
(add-hook 'text-mode-hook 'turn-on-auto-fill)
スクラッチバッファーの動作をいじるよりも、ファイル引数を指定して Emacs を開くことをお勧めします。たとえば、「emacs foo.txt」を実行すると、特別なことをしなくても、すでにテキストモードで起動する可能性があります。
スクラッチバッファーでのみ Mx text-mode を実行します。それで全部です。