Function: evil-repeat-force-abort-p

evil-repeat-force-abort-p is a byte-compiled function defined in evil-repeat.el.

Signature

(evil-repeat-force-abort-p REPEAT-TYPE)

Documentation

Whether the current command should abort the recording of repeat information.

Return non-nil if so.

Source Code

;; Defined in ~/.emacs.d/elpa/evil-20251108.138/evil-repeat.el
(defun evil-repeat-force-abort-p (repeat-type)
  "Whether the current command should abort the recording of repeat information.
Return non-nil if so."
  (or (evil-repeat-different-buffer-p)  ; ... buffer changed
      (eq repeat-type 'abort)           ; ... explicitly forced
      (eq evil-recording-repeat 'abort) ; ... already aborted
      (evil-emacs-state-p)              ; ... in Emacs state
      (and (evil-mouse-events-p         ; ... mouse events
            (this-command-keys-vector))
           (null repeat-type))
      (minibufferp)))                   ; ... minibuffer activated