Skip to content

Instantly share code, notes, and snippets.

@albertstartup
Last active August 5, 2016 12:10
Show Gist options
  • Save albertstartup/d663b7f5a20d31495a59a72a1a14615d to your computer and use it in GitHub Desktop.
Save albertstartup/d663b7f5a20d31495a59a72a1a14615d to your computer and use it in GitHub Desktop.
Toggle mode line.
;;; toggle-mode-line.el --- Toggle mode line.
(defun toggle-mode-line ()
(interactive)
(if mode-line-format
(progn (setq-local hidden-mode-line-format mode-line-format)
(setq mode-line-format nil))
(setq mode-line-format hidden-mode-line-format))
(force-mode-line-update))
(provide 'toggle-mode-line)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment