Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I hide emacs status line?

Tags:

emacs

I would like to hide completely the emacs status line. Is that possible? I could not find anything about this through Google.

like image 802
swdev Avatar asked Jan 18 '11 08:01

swdev


2 Answers

Hide status line globally

(setq-default mode-line-format nil)

The preferred way to completely hide the status line is (setq-default mode-line-format nil) in your init.el file.


Hide status line of the current buffer

(setq mode-line-format nil)

Hide status line of the current buffer by typing M-: followed by (setq mode-line-format nil) when prompted.

like image 168
Nate Avatar answered Oct 22 '22 06:10

Nate


On a more lispy level, setting mode-line-format to nil will remove it. See here

like image 20
Erik Avatar answered Oct 22 '22 05:10

Erik