Function: cider-inspector--highlight-diff-tags

cider-inspector--highlight-diff-tags is a byte-compiled function defined in cider-inspector.el.

Signature

(cider-inspector--highlight-diff-tags)

Documentation

Apply distinctive face to #± by manually walking through buffer.

Doing this via font-locking rules doesn't seem to work, probably because the text is already colored by clojure mode font-locking.

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-inspector.el
(defun cider-inspector--highlight-diff-tags ()
  "Apply distinctive face to #± by manually walking through buffer.
Doing this via font-locking rules doesn't seem to work, probably because
the text is already colored by clojure mode font-locking."
  (save-excursion
    (goto-char (point-min))
    (while (search-forward "#±" nil t)
      (put-text-property (match-beginning 0) (match-end 0)
                         'face 'font-lock-warning-face))))