Function: evil-vector-to-string

evil-vector-to-string is a byte-compiled function defined in evil-common.el.

Signature

(evil-vector-to-string VECTOR)

Documentation

Turn VECTOR into a string, changing <escape> to "\\e".

Source Code

;; Defined in ~/.emacs.d/elpa/evil-20251108.138/evil-common.el
(defun evil-vector-to-string (vector)
  "Turn VECTOR into a string, changing <escape> to \"\\e\"."
  (mapconcat (lambda (c) (if (eq c 'escape) "\e" (list c)))
             vector
             ""))