Function: completion--eager-update-p

completion--eager-update-p is a byte-compiled function defined in minibuffer.el.gz.

Signature

(completion--eager-update-p START)

Documentation

Return non-nil if *Completions* should be automatically updated.

If completion-eager-update is the symbol auto, checks completion metadata for the string from START to point.

Source Code

;; Defined in /usr/src/emacs/lisp/minibuffer.el.gz
(defun completion--eager-update-p (start)
  "Return non-nil if *Completions* should be automatically updated.

If `completion-eager-update' is the symbol `auto', checks completion
metadata for the string from START to point."
  (if (eq completion-eager-update 'auto)
      (completion-metadata-get (completion--field-metadata start) 'eager-update)
    completion-eager-update))