Last active
August 9, 2018 16:35
-
-
Save rnkn/a522429ed7e784ae091b8760f416ecf8 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(defun toggle-hide-mode-line () | |
"Toggle mode-line visibility in current buffer." | |
(interactive) | |
(if mode-line-format | |
(setq-local mode-line-format nil) | |
(kill-local-variable 'mode-line-format))) | |
(defalias 'hml 'toggle-hide-mode-line) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment