Skip to content

Instantly share code, notes, and snippets.

@nailor
Created May 24, 2011 07:09
Show Gist options
  • Save nailor/988247 to your computer and use it in GitHub Desktop.
Save nailor/988247 to your computer and use it in GitHub Desktop.
(defun single-window-mode ()
(interactive)
(delete-other-windows)
(set-frame-size (selected-frame) 80 65))
(defun double-window-mode ()
(interactive)
(delete-other-windows)
(set-frame-size (selected-frame) 163 65)
(split-window (selected-window) 83 t))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment