Variable: evil-command-window-mode-hook
evil-command-window-mode-hook is a variable defined in
evil-command-window.el.
Value
nil
Documentation
Hook run after entering evil-command-window-mode.
No problems result if this variable is not bound.
add-hook automatically binds it. (This is true for all hook variables.)
Source Code
;; Defined in ~/.emacs.d/elpa/evil-20251108.138/evil-command-window.el
(define-derived-mode evil-command-window-mode fundamental-mode "Evil-cmd"
"Major mode for the Evil command-line window."
(add-hook 'after-change-functions #'evil--command-window-draw-prefix nil t)
(auto-fill-mode 0))