Function: hywconfig-yank-pop-continue

hywconfig-yank-pop-continue is an autoloaded, interactive and byte-compiled function defined in hywconfig.el.

Signature

(hywconfig-yank-pop-continue N)

Documentation

Replace selected frame's window config with prefix arg Nth prior one in ring.

If there are more than one entries in the ring, then stay in the hywconfig menu.

Interactively, default value of N = 1, means the last saved window configuration is displayed.

The sequence of window configurations wraps around, so that after the oldest one comes the newest one.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hywconfig.el
;;;###autoload
(defun hywconfig-yank-pop-continue (n)
  "Replace selected frame's window config with prefix arg Nth prior one in ring.
If there are more than one entries in the ring, then stay in the hywconfig menu.

Interactively, default value of N = 1, means the last saved window
configuration is displayed.

The sequence of window configurations wraps around, so that after the
oldest one comes the newest one."
  (interactive "p")
  (hywconfig-yank-pop n)
  (when (> (ring-length (hywconfig-get-ring)) 1)
    (hyperbole 'win)))