Function: cider-history-highlight-inserted
cider-history-highlight-inserted is a byte-compiled function defined
in cider-history.el.
Signature
(cider-history-highlight-inserted START END)
Documentation
Insert the text between START and END.
Source Code
;; Defined in ~/.emacs.d/elpa/cider-20260822.1520/cider-history.el
(defun cider-history-highlight-inserted (start end)
"Insert the text between START and END."
(pcase cider-history-highlight-inserted-item
((or `pulse `t)
(let ((pulse-delay .05) (pulse-iterations 10))
(with-no-warnings
(pulse-momentary-highlight-region
start end cider-history-inserted-item-face))))
(`solid
(let ((o (make-overlay start end)))
(overlay-put o 'face cider-history-inserted-item-face)
(sit-for 0.5)
(delete-overlay o)))))