Function: evil-local-set-key
evil-local-set-key is a byte-compiled function defined in
evil-core.el.
Signature
(evil-local-set-key STATE KEY DEF)
Documentation
Bind KEY to DEF in STATE in the current buffer.
Source Code
;; Defined in ~/.emacs.d/elpa/evil-20251108.138/evil-core.el
(defun evil-local-set-key (state key def)
"Bind KEY to DEF in STATE in the current buffer."
(define-key (evil-state-property state :local-keymap t) key def))