Skip to content

Instantly share code, notes, and snippets.

@MasWag
Created June 6, 2025 05:24
Show Gist options
  • Select an option

  • Save MasWag/6653be2a988d71c9fe383b46ee9b441c to your computer and use it in GitHub Desktop.

Select an option

Save MasWag/6653be2a988d71c9fe383b46ee9b441c to your computer and use it in GitHub Desktop.
(defun pin-window ()
(interactive)
(let ((window (selected-window)))
(progn
(message "Pin the window %s" window)
(set-window-dedicated-p window t))))
(defun unpin-window ()
(interactive)
(let ((window (selected-window)))
(progn
(message "Unpin the window %s" window)
(set-window-dedicated-p window nil))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment