Variable: eldoc-message-commands
eldoc-message-commands is a variable defined in eldoc.el.gz.
Value
[evil-window-vnew evil-window-bottom-right evil-search-word-backward evil-window-move-very-top evil-next-match evil-avy-goto-char-timer evil-window-vsplit evil-window-mru evil-window-increase-height evil-window-top-left evil-window-split-view evil-window-next evil-window-decrease-height evil-avy-goto-word-or-subword-1 evil-window-middle evil-avy-goto-word-1-below evil-search-unbounded-word-backward evil-window-split evil-backward-paragraph evil-window-move-far-left evil-window-set-height evil-window-rotate-upwards evil-window-move-very-bottom evil-backward-word-begin evil-window-right evil-window-left evil-window-new evil-avy-goto-char evil-window-set-width evil-window-delete evil-ex-search-previous]
Documentation
Commands after which it is appropriate to print in the echo area.
ElDoc does not try to print function arglists, etc., after just any command,
because some commands print their own messages in the echo area and these
functions would instantly overwrite them. But self-insert-command as well
as most motion commands are good candidates.
This variable contains an obarray of symbols; do not manipulate it
directly. Instead, use eldoc-add-command and eldoc-remove-command.
Source Code
;; Defined in /usr/src/emacs/lisp/emacs-lisp/eldoc.el.gz
(defvar eldoc-message-commands
;; Don't define as `defconst' since it would then go to (read-only) purespace.
(make-vector eldoc-message-commands-table-size 0)
"Commands after which it is appropriate to print in the echo area.
ElDoc does not try to print function arglists, etc., after just any command,
because some commands print their own messages in the echo area and these
functions would instantly overwrite them. But `self-insert-command' as well
as most motion commands are good candidates.
This variable contains an obarray of symbols; do not manipulate it
directly. Instead, use `eldoc-add-command' and `eldoc-remove-command'.")