Skip to content

Instantly share code, notes, and snippets.

@nhocki
Created April 9, 2010 19:01
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 nhocki/8f879133e3e3c7b2dbcd to your computer and use it in GitHub Desktop.
Save nhocki/8f879133e3e3c7b2dbcd to your computer and use it in GitHub Desktop.
(defun toggle-fullscreen ()
(interactive)
(set-frame-parameter nil 'fullscreen (if (frame-parameter nil 'fullscreen)
nil
'fullboth)))
(global-set-key [(meta return)] 'toggle-fullscreen)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment