Function: hui:htype-help-current-window

hui:htype-help-current-window is a byte-compiled function defined in hui.el.

Signature

(hui:htype-help-current-window HTYPE-SYM &optional NO-SORT)

Documentation

Display in the current window output from hui:htype-help using HTYPE-SYM.

Optional NO-SORT means display in decreasing priority order (natural order).

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hui.el
(defun hui:htype-help-current-window (htype-sym &optional no-sort)
  "Display in the current window output from `hui:htype-help' using HTYPE-SYM.
Optional NO-SORT means display in decreasing priority order (natural order)."
  (let ((display-buffer-alist
	 '(("\\`*Help" . ((lambda (buf _alist) (switch-to-buffer buf)))))))
    (hui:htype-help htype-sym no-sort)))