Skip to content

Instantly share code, notes, and snippets.

@rnkn
Last active August 9, 2018 16:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rnkn/a522429ed7e784ae091b8760f416ecf8 to your computer and use it in GitHub Desktop.
Save rnkn/a522429ed7e784ae091b8760f416ecf8 to your computer and use it in GitHub Desktop.
(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