Function: icomplete-force-complete

icomplete-force-complete is an interactive and byte-compiled function defined in icomplete.el.gz.

Signature

(icomplete-force-complete)

Documentation

Complete the icomplete minibuffer.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/icomplete.el.gz
(defun icomplete-force-complete ()
  "Complete the icomplete minibuffer."
  (interactive)
  ;; We're not at all interested in cycling here (bug#34077).
  (if (window-minibuffer-p)
      (minibuffer-force-complete nil nil 'dont-cycle)
    (minibuffer-force-complete (icomplete--field-beg)
                               (icomplete--field-end)
                               'dont-cycle)))