scratch消息总是说:
;; 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.
如何删除此选项并将空白的scratch消息设为默认值?
发布于 2009-09-30 05:57:47
您可以将此变量'initial-scratch-message
自定义为您想要的任何消息。
(setq initial-scratch-message "")
发布于 2009-09-30 21:19:24
对于Emacs 23,您可以这样做:
(setq initial-scratch-message nil)
从文档中可以看到:“启动时在暂存缓冲区中显示初始消息。如果为nil,则不会显示任何消息。”
发布于 2009-09-30 06:56:27
您可以使用以下命令关闭初始启动屏幕
(setq inhibit-startup-message t)
这似乎还删除了暂存缓冲区中的初始消息。
https://stackoverflow.com/questions/1498258
复制