Function: hyrolo-quit

hyrolo-quit is an interactive and byte-compiled function defined in hyrolo.el.

Signature

(hyrolo-quit)

Documentation

Quit from the rolo match buffer and restore the prior frame display.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260822.1645/hyrolo.el
(defun hyrolo-quit ()
  "Quit from the rolo match buffer and restore the prior frame display."
  (interactive)
  (when (derived-mode-p 'hyrolo-mode)
    (bury-buffer)
    (and hyrolo--wconfig (window-configuration-p hyrolo--wconfig)
         (set-window-configuration hyrolo--wconfig))))