Function: evil-set-cursor-color

evil-set-cursor-color is a byte-compiled function defined in evil-common.el.

Signature

(evil-set-cursor-color COLOR)

Documentation

Set the cursor color to COLOR.

Source Code

;; Defined in ~/.emacs.d/elpa/evil-20251108.138/evil-common.el
(defun evil-set-cursor-color (color)
  "Set the cursor color to COLOR."
  (unless (equal (frame-parameter nil 'cursor-color) color)
    ;; `set-cursor-color' forces a redisplay, so only
    ;; call it when the color actually changes
    (set-cursor-color color)))