Function: ido-completion-auto-help

ido-completion-auto-help is an interactive and byte-compiled function defined in ido.el.gz.

Signature

(ido-completion-auto-help)

Documentation

Call ido-completion-help if completion-auto-help is non-nil.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/ido.el.gz
(defun ido-completion-auto-help ()
  "Call `ido-completion-help' if `completion-auto-help' is non-nil."
  (interactive)
  ;; Note: `completion-auto-help' could also be `lazy', but this value
  ;; is irrelevant to ido, which is fundamentally eager, so it is
  ;; treated the same as t.
  (when completion-auto-help
    (ido-completion-help)))