如何更改Emacs中的暂存消息?

时间:2009-09-30 13:52:10

标签: 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.

如何删除此内容并将空白临时消息设为默认消息?

3 个答案:

答案 0 :(得分:61)

您可以将此变量'initial-scratch-message自定义为您想要的任何消息。

(setq initial-scratch-message "")

答案 1 :(得分:22)

对于Emacs 23,您可以这样做:

(setq initial-scratch-message nil)

从文档中:“启动时在 scratch 缓冲区中显示的初始消息。如果这是nil,则不会显示任何消息。”

答案 2 :(得分:-2)

您可以使用

关闭初始启动画面
(setq inhibit-startup-message t)

这似乎也会删除暂存缓冲区中的初始消息。