Function: evil-describe

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

Signature

(evil-describe BEG END TYPE &rest PROPERTIES)

Documentation

Return description of BEG and END with PROPERTIES.

If no description is available, return the empty string.

Source Code

;; Defined in ~/.emacs.d/elpa/evil-20251108.138/evil-common.el
(defun evil-describe (beg end type &rest properties)
  "Return description of BEG and END with PROPERTIES.
If no description is available, return the empty string."
  (let* ((type (or type (evil-type properties)))
         (properties (plist-put properties :type type))
         (describe (evil-type-property type :string)))
    (or (when describe
          (apply describe beg end properties))
        "")))