Skip to content

Instantly share code, notes, and snippets.

@abuiles
Created December 2, 2009 21:28
Show Gist options
  • Save abuiles/247614 to your computer and use it in GitHub Desktop.
Save abuiles/247614 to your computer and use it in GitHub Desktop.
;;Full screen
(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