Function: smart-helm-alive-p
smart-helm-alive-p is a byte-compiled function defined in
hui-mouse.el.
Signature
(smart-helm-alive-p)
Documentation
Return t if helm completion is actively prompting.
Source Code
;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hui-mouse.el
(defun smart-helm-alive-p ()
"Return t if `helm' completion is actively prompting."
;; Handles case where helm-action-buffer is visible but helm-buffer
;; is not; fixed in helm with commit gh#emacs-helm/helm/cc15f73.
(and (featurep 'helm)
helm-alive-p
(window-live-p (helm-window))
(minibuffer-window-active-p (minibuffer-window))))