Function: embark-org--at-heading

embark-org--at-heading is a byte-compiled function defined in embark-org.el.

Signature

(embark-org--at-heading &rest REST &key RUN TARGET &allow-other-keys)

Documentation

RUN the action at the location of the heading TARGET refers to.

The location is given by the org-marker text property of target. Applies RUN to the REST of the arguments.

Source Code

;; Defined in ~/.emacs.d/elpa/embark-20260610.302/embark-org.el
(cl-defun embark-org--at-heading
    (&rest rest &key run target &allow-other-keys)
  "RUN the action at the location of the heading TARGET refers to.
The location is given by the `org-marker' text property of
target.  Applies RUN to the REST of the arguments."
  (org-with-point-at (embark-org--heading-location target)
    (apply run :target target rest)))