Function: completions--post-command-update

completions--post-command-update is a byte-compiled function defined in minibuffer.el.gz.

Signature

(completions--post-command-update)

Documentation

Update displayed *Completions* buffer after command, once.

Source Code

;; Defined in /usr/src/emacs/lisp/minibuffer.el.gz
(defun completions--post-command-update ()
  "Update displayed *Completions* buffer after command, once."
  (remove-hook 'post-command-hook #'completions--post-command-update)
  (when (and completion-eager-update (minibuffer--completions-visible))
    (completions--background-update)))