Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I make Emacs start without so much fanfare?

Tags:

emacs

Every time I start Emacs I see a page of help text and a bunch of messages suggesting that I try the tutorial. How do I stop this from happening?

like image 712
jfm3 Avatar asked Sep 28 '08 02:09

jfm3


3 Answers

Emacs has a couple of variables which inhibit these actions. If you edit your emacs control file (.emacs) and insert the following:

;; inhibit-startup-echo-area-message MUST be set to a hardcoded 
;; string of your login name 
(setq inhibit-startup-echo-area-message "USERNAME")
(setq inhibit-startup-message t)

that should solve your problem. They basically set the inhibit parameters to true to prevent the behavior you want to get rid of.

like image 191
paxdiablo Avatar answered Nov 16 '22 18:11

paxdiablo


Put the following in your .emacs:

(setq inhibit-startup-message t)
(setq inhibit-startup-echo-area-message t)
like image 29
jfm3 Avatar answered Nov 16 '22 17:11

jfm3


You can customize message in minibuffer therefore remove fanfare:

;; Hide advertisement from minibuffer
(defun display-startup-echo-area-message ()
  (message ""))
like image 43
rgtk Avatar answered Nov 16 '22 16:11

rgtk