https://github.com/hlissner/emacs-hide-mode-line
An Emacs plugin that hides (or masks) the current buffer's mode-line
https://github.com/hlissner/emacs-hide-mode-line
Last synced: 3 months ago
JSON representation
An Emacs plugin that hides (or masks) the current buffer's mode-line
- Host: GitHub
- URL: https://github.com/hlissner/emacs-hide-mode-line
- Owner: hlissner
- License: mit
- Created: 2018-03-01T06:53:34.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2024-08-28T23:25:14.000Z (9 months ago)
- Last Synced: 2025-01-13T21:44:29.853Z (5 months ago)
- Language: Emacs Lisp
- Homepage:
- Size: 8.79 KB
- Stars: 80
- Watchers: 5
- Forks: 5
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[](http://melpa.org/#/hide-mode-line)
[](./LICENSE)# hide-mode-line
Provides `hide-mode-line-mode`. A minor mode that hides (or masks) the mode-line
in your current buffer. It can be used to toggle an alternative mode-line,
toggle its visibility, or simply disable the mode-line in buffers where it isn't
very useful otherwise.> Extracted from `doom-hide-modeline-mode` in [Doom Emacs][doom].
## Install
`hide-mode-line` is available on MELPA.
`M-x package-install hide-mode-line`
```emacs-lisp
(require 'hide-mode-line)
```Add `hide-mode-line-mode` to hooks where you don't want a mode-line, like the
completion-list or org todo/agenda-popup windows, or neotree.```emacs-lisp
(add-hook 'completion-list-mode-hook #'hide-mode-line-mode)
(add-hook 'neotree-mode-hook #'hide-mode-line-mode)
```Or replace the mode-line in specific windows:
```emacs-lisp
(let ((hide-mode-line-format '("%b")))
(hide-mode-line-mode +1))(setq-local hide-mode-line-format '("%b"))
(hide-mode-line-mode +1)
```[doom]: https://github.com/hlissner/doom-emacs