Created
June 6, 2025 05:24
-
-
Save MasWag/6653be2a988d71c9fe383b46ee9b441c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| (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