Variable: repeat-echo-function

repeat-echo-function is a customizable variable defined in repeat.el.gz.

Value

repeat-echo-message

Documentation

Function to display a hint about available keys.

Function is called after every repeatable command with one argument: a repeating map, or nil after deactivating the transient repeating mode.

This variable was added, or its default value changed, in Emacs 28.1.

Source Code

;; Defined in /usr/src/emacs/lisp/repeat.el.gz
(defcustom repeat-echo-function #'repeat-echo-message
  "Function to display a hint about available keys.
Function is called after every repeatable command with one argument:
a repeating map, or nil after deactivating the transient repeating mode."
  :type '(choice (const :tag "Show hints in the echo area"
                        repeat-echo-message)
                 (const :tag "Show indicator in the mode line"
                        repeat-echo-mode-line)
                 (const :tag "No visual feedback" ignore)
                 (function :tag "Function"))
  :group 'convenience
  :version "28.1")