Function: embark-rerun-collect-or-export
embark-rerun-collect-or-export is an interactive and byte-compiled
function defined in embark.el.
Signature
(embark-rerun-collect-or-export)
Documentation
Rerun the embark-collect or embark-export that created this buffer.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/embark-20260610.302/embark.el
(defun embark-rerun-collect-or-export ()
"Rerun the `embark-collect' or `embark-export' that created this buffer."
(interactive)
(if embark--rerun-function
(funcall embark--rerun-function)
(user-error "No function to rerun collect or export found")))