Function: smart-helm-at-header
smart-helm-at-header is a byte-compiled function defined in
hui-mouse.el.
Signature
(smart-helm-at-header)
Documentation
Return t iff Action Key depress was on a helm header.
To be precise, if Action Key depress was on the first fixed header or a helm section header.
Source Code
;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hui-mouse.el
;;; ************************************************************************
;;; smart-helm functions
;;; ************************************************************************
(defun smart-helm-at-header ()
"Return t iff Action Key depress was on a helm header.
To be precise, if Action Key depress was on the first fixed header or
a helm section header."
(or (helm-pos-header-line-p)
(and (eventp action-key-depress-args)
(eq (posn-area (event-start action-key-depress-args))
'header-line))))