Function: evil-downcase-first

evil-downcase-first is a byte-compiled function defined in evil-common.el.

Signature

(evil-downcase-first STR)

Documentation

Return STR with the first letter downcased.

Source Code

;; Defined in ~/.emacs.d/elpa/evil-20251108.138/evil-common.el
;;; Substitute

(defun evil-downcase-first (str)
  "Return STR with the first letter downcased."
  (if (zerop (length str))
      str
    (concat (downcase (substring str 0 1))
            (substring str 1))))