Variable: copy-region-blink-predicate
copy-region-blink-predicate is a customizable variable defined in
simple.el.gz.
Value
region-indistinguishable-p
Documentation
Whether the cursor must be blinked after a copy.
When this condition holds, and the copied region fits in the
current window, kill-ring-save will blink the cursor between
point and mark for copy-region-blink-delay seconds.
This variable was added, or its default value changed, in Emacs 29.1.
Probably introduced at or before Emacs version 29.1.
Source Code
;; Defined in /usr/src/emacs/lisp/simple.el.gz
(defcustom copy-region-blink-predicate #'region-indistinguishable-p
"Whether the cursor must be blinked after a copy.
When this condition holds, and the copied region fits in the
current window, `kill-ring-save' will blink the cursor between
point and mark for `copy-region-blink-delay' seconds."
:type '(radio (function-item region-indistinguishable-p)
(function-item :doc "Always blink point and mark." always)
(function-item :doc "Never blink point and mark." ignore)
(function :tag "Other predicate function"))
:group 'killing
:version "29.1")