Function: embark--action-repeatable-p
embark--action-repeatable-p is a byte-compiled function defined in
embark.el.
Signature
(embark--action-repeatable-p ACTION)
Documentation
Is ACTION repeatable? When the return value is non-nil it will be the desired starting point of the next target cycle or t to indicate the default, namely that the target cycle for the next action should begin at the type of the current target.
Source Code
;; Defined in ~/.emacs.d/elpa/embark-20260610.302/embark.el
(defun embark--action-repeatable-p (action)
"Is ACTION repeatable?
When the return value is non-nil it will be the desired starting
point of the next target cycle or t to indicate the default,
namely that the target cycle for the next action should begin at
the type of the current target."
(or (cdr (assq action embark-repeat-actions))
(and (memq action embark-repeat-actions) t)))