Variable: corfu-echo-delay
corfu-echo-delay is a customizable variable defined in corfu-echo.el.
Value
(2.0 . 1.0)
Documentation
Show documentation string in the echo area after that number of seconds.
The value can be a pair of two floats to specify initial and subsequent delay.
Source Code
;; Defined in ~/.emacs.d/elpa/corfu-20260813.950/corfu-echo.el
(defcustom corfu-echo-delay '(2.0 . 1.0)
"Show documentation string in the echo area after that number of seconds.
The value can be a pair of two floats to specify initial and
subsequent delay."
:type '(choice (const :tag "Never" nil)
(number :tag "Delay in seconds")
(cons :tag "Two Delays"
(choice :tag "Initial " number)
(choice :tag "Subsequent" number)))
:group 'corfu)