Function: icomplete-fido-exit

icomplete-fido-exit is an interactive and byte-compiled function defined in icomplete.el.gz.

Signature

(icomplete-fido-exit FORCE)

Documentation

Attempt to exit minibuffer immediately with current input.

Unless FORCE is non-nil (interactively with a prefix argument), honor a non-nil REQUIRE-MATCH argument to completing-read by trying to complete as much as possible and disallowing the exit if that doesn't produce a completion match.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/icomplete.el.gz
(defun icomplete-fido-exit (force)
  "Attempt to exit minibuffer immediately with current input.
Unless FORCE is non-nil (interactively with a prefix argument),
honor a non-nil REQUIRE-MATCH argument to `completing-read' by
trying to complete as much as possible and disallowing the exit
if that doesn't produce a completion match."
  (interactive "P")
  (if (and (not force) minibuffer--require-match)
      (minibuffer-complete-and-exit)
    (exit-minibuffer)))