Last active
August 5, 2016 12:10
-
-
Save albertstartup/d663b7f5a20d31495a59a72a1a14615d to your computer and use it in GitHub Desktop.
Toggle mode line.
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
| ;;; 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