Variable: minibuffer-local-filename-completion-map

minibuffer-local-filename-completion-map is a variable defined in minibuffer.el.gz.

Value

SPC  nil

Documentation

Local keymap for minibuffer input with completion for filenames.

Gets combined either with minibuffer-local-completion-map or with minibuffer-local-must-match-map.

Probably introduced at or before Emacs version 22.1.

Source Code

;; Defined in /usr/src/emacs/lisp/minibuffer.el.gz
(defvar minibuffer-local-filename-completion-map
  (let ((map (make-sparse-keymap)))
    (define-key map " " nil)
    map)
  "Local keymap for minibuffer input with completion for filenames.
Gets combined either with `minibuffer-local-completion-map' or
with `minibuffer-local-must-match-map'.")