Skip to content

Instantly share code, notes, and snippets.

@leodemoura
Created September 13, 2014 01:08
Show Gist options
  • Save leodemoura/76e9e6e9b13bb2727658 to your computer and use it in GitHub Desktop.
Save leodemoura/76e9e6e9b13bb2727658 to your computer and use it in GitHub Desktop.
full scree emacs
;; =======================================
;; Full Screen
(defun toggle-fullscreen (&optional f)
(interactive)
(let ((current-value (frame-parameter nil 'fullscreen)))
(set-frame-parameter nil 'fullscreen
(if (equal 'fullboth current-value)
(if (boundp 'old-fullscreen) old-fullscreen nil)
(progn (setq old-fullscreen current-value)
'fullboth)))))
(global-set-key [(ctrl f2)] 'toggle-fullscreen)
(add-hook 'after-make-frame-functions 'toggle-fullscreen)
;; =======================================
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment