Function: hsys-org-agenda-item-at-p
hsys-org-agenda-item-at-p is a byte-compiled function defined in
hsys-org.el.
Signature
(hsys-org-agenda-item-at-p)
Documentation
Return non-nil if point is on an Org Agenda view item line, else nil.
Source Code
;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hsys-org.el
(defun hsys-org-agenda-item-at-p ()
"Return non-nil if point is on an Org Agenda view item line, else nil."
(and (apply #'derived-mode-p '(org-agenda-mode))
(org-get-at-bol 'org-marker)
t))