Function: cider-history-insert-and-highlight

cider-history-insert-and-highlight is a byte-compiled function defined in cider-history.el.

Signature

(cider-history-insert-and-highlight STR)

Documentation

Helper function to insert STR at point, highlighting it if appropriate.

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260822.1520/cider-history.el
(defun cider-history-insert-and-highlight (str)
  "Helper function to insert STR at point, highlighting it if appropriate."
  (let ((before-insert (point)))
    (let (deactivate-mark)
      (insert-for-yank str))
    (cider-history-highlight-inserted
     before-insert
     (point))))