Function: embark-org--mark-plain-list
embark-org--mark-plain-list is a byte-compiled function defined in
embark-org.el.
Signature
(embark-org--mark-plain-list &rest REST &key RUN TYPE &allow-other-keys)
Documentation
Mark the target if it is a plain org list.
Around action hook for org-toggle-checkbox and org-toggle-heading.
See embark-around-action-hooks for the keyword arguments RUN and TYPE.
REST are the remaining arguments.
Source Code
;; Defined in ~/.emacs.d/elpa/embark-20260610.302/embark-org.el
(cl-defun embark-org--mark-plain-list
(&rest rest &key run type &allow-other-keys)
"Mark the target if it is a plain org list.
Around action hook for `org-toggle-checkbox' and `org-toggle-heading'.
See `embark-around-action-hooks' for the keyword arguments RUN and TYPE.
REST are the remaining arguments."
(apply (if (eq type 'org-plain-list) #'embark--mark-target run)
:type type
rest))