Function: evil-set-command-properties

evil-set-command-properties is a byte-compiled function defined in evil-common.el.

Signature

(evil-set-command-properties COMMAND &rest PROPERTIES)

Documentation

Replace all of COMMAND's properties with PROPERTIES.

PROPERTIES should be a property list. This erases all previous properties; to only add properties, use evil-set-command-property.

Source Code

;; Defined in ~/.emacs.d/elpa/evil-20251108.138/evil-common.el
(defun evil-set-command-properties (command &rest properties)
  "Replace all of COMMAND's properties with PROPERTIES.
PROPERTIES should be a property list.
This erases all previous properties; to only add properties,
use `evil-set-command-property'."
  (setf (evil-command-properties command) properties))