Function: hkey-help-hide

hkey-help-hide is an autoloaded, interactive and byte-compiled function defined in hmouse-drv.el.

Signature

(hkey-help-hide &optional KILL WINDOW)

Documentation

Optionally KILL current buffer (default is bury) and quit WINDOW.

Restore frame to configuration prior to help buffer display. Point must be in a help buffer. See hkey-quit-window for additional details.

Key Bindings

Aliases

quit-window verilog-quit-window Info-exit (obsolete since 27.1)

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hmouse-drv.el
;;;###autoload
(defun hkey-help-hide (&optional kill window)
  "Optionally KILL current buffer (default is bury) and quit WINDOW.
Restore frame to configuration prior to help buffer display.
Point must be in a help buffer.  See `hkey-quit-window' for additional
details."
  (interactive "P")
  (let ((buf (current-buffer)))
    (if (window-configuration-p hkey--wconfig)
	(progn (set-window-configuration hkey--wconfig)
	       (if kill
		   (kill-buffer buf)
		 (bury-buffer buf)))
      (hkey-quit-window kill window)))
  (setq hkey--wconfig nil))