Function: icomplete--fido-mode-setup

icomplete--fido-mode-setup is a byte-compiled function defined in icomplete.el.gz.

Signature

(icomplete--fido-mode-setup)

Documentation

Setup fido-mode(var)/fido-mode(fun)'s minibuffer.

Source Code

;; Defined in /usr/src/emacs/lisp/icomplete.el.gz
(defun icomplete--fido-mode-setup ()
  "Setup `fido-mode''s minibuffer."
  (when (and icomplete-mode (icomplete-simple-completing-p))
    (use-local-map (make-composed-keymap icomplete-fido-mode-map
                                         (current-local-map)))
    (setq-local icomplete-tidy-shadowed-file-names t
                icomplete-show-matches-on-no-input t
                icomplete-hide-common-prefix nil
                icomplete-scroll (not (null icomplete-vertical-mode))
                completion-styles '(flex)
                completion-flex-nospace nil
                completion-category-defaults (icomplete--fido-ccd)
                completion-ignore-case t
                read-buffer-completion-ignore-case t
                read-file-name-completion-ignore-case t)))