Variable: evil-ex-complete-emacs-commands
evil-ex-complete-emacs-commands is a customizable variable defined in
evil-vars.el.
Value
in-turn
Documentation
TAB-completion for Emacs commands in ex command line.
This variable determines when Emacs commands are considered for completion, always, never, or only if no Evil ex command is available for completion.
Source Code
;; Defined in ~/.emacs.d/elpa/evil-20251108.138/evil-vars.el
(defcustom evil-ex-complete-emacs-commands 'in-turn
"TAB-completion for Emacs commands in ex command line.
This variable determines when Emacs commands are considered for
completion, always, never, or only if no Evil ex command is
available for completion."
:group 'evil
:type '(radio (const :tag "Only if no ex-command." :value in-turn)
(const :tag "Never" :value nil)
(const :tag "Always" :value t)))