Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I kill the *GNU Emacs* buffer when emacs starts? [duplicate]

Tags:

emacs

Possible Duplicate:
Unable to hide welcome screen in Emacs

Is there a way I can prevent the GNU Emacs buffer from coming up when emacs starts?

like image 951
Wentao Avatar asked Oct 06 '10 02:10

Wentao


People also ask

How do I close Emacs buffer?

C-x k to kill the current buffer. C-x 0 to close the current window. C-x 1 to close every other window.

How do you kill a buffer?

C-x k ( kill-buffer ) kills one buffer, whose name you specify in the minibuffer. The default, used if you type just RET in the minibuffer, is to kill the current buffer. If you kill the current buffer, another buffer is selected; one that has been selected recently but does not appear in any window now.

How do I stop Emacs process?

On a text terminal, the C-z command suspends Emacs, stopping the program temporarily and returning control to the parent process (usually a shell); in most shells, you can resume Emacs after suspending it with the shell command %emacs .

How many buffers can you have open at a time in Emacs?

The number of buffers you can have really has no limit. Most of the time, only one or two buffers are displayed, but even if you can't see them, all the buffers you create in an Emacs session are still active. You can think of them as a stack of pages, with the one being displayed as the top page.


1 Answers

I believe this in your ~/.emacs will do that

;; no startup msg  
(setq inhibit-startup-message t)        ; Disable startup message 
like image 71
Dirk Eddelbuettel Avatar answered Oct 04 '22 21:10

Dirk Eddelbuettel