Function: hywconfig-ring-save
hywconfig-ring-save is an autoloaded, interactive and byte-compiled
function defined in hywconfig.el.
Signature
(hywconfig-ring-save)
Documentation
Save the selected frame's window configuration onto the save ring.
Use {M-x hywconfig-yank-pop (hywconfig-yank-pop)} to restore it at a later time.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hywconfig.el
;;;###autoload
(defun hywconfig-ring-save ()
"Save the selected frame's window configuration onto the save ring.
Use {\\[hywconfig-yank-pop]} to restore it at a later time."
(interactive)
(ring-insert (hywconfig-get-ring) (current-window-configuration))
(when (called-interactively-p 'interactive)
(message
(substitute-command-keys
"Window configuration saved. Use {\\[hywconfig-yank-pop]} to restore."))))