Skip to content

Instantly share code, notes, and snippets.

@andiogenes
Created April 25, 2025 08:23
Show Gist options
  • Save andiogenes/18efdabad0bce3daa3a8f48c6e2b2056 to your computer and use it in GitHub Desktop.
Save andiogenes/18efdabad0bce3daa3a8f48c6e2b2056 to your computer and use it in GitHub Desktop.
(defvar window-stack '())
(defun push-window-configuration ()
(interactive)
(push (current-window-configuration) window-stack))
(defun pop-window-configuration ()
(interactive)
(let ((val (pop window-stack)))
(and val (set-window-configuration val))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment