Skip to content

Instantly share code, notes, and snippets.

@antoniogarrote
Created August 21, 2010 16:18
Show Gist options
  • Save antoniogarrote/542513 to your computer and use it in GitHub Desktop.
Save antoniogarrote/542513 to your computer and use it in GitHub Desktop.
;; full screen
(defun fullscreen (&optional f)
(interactive)
(set-frame-parameter f 'fullscreen
(if (frame-parameter f 'fullscreen) nil 'fullboth)))
(global-set-key [f11] 'fullscreen)
(add-hook 'after-make-frame-functions 'fullscreen)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment