Variable: ido-rewrite-file-prompt-functions

ido-rewrite-file-prompt-functions is a customizable variable defined in ido.el.gz.

Value

nil

Documentation

List of functions to run when the find-file prompt is created.

Each function on the list may modify the following dynamically bound variables:
  dirname - the (abbreviated) directory name
to be modified by the hook functions
  max-width - the max width of the resulting dirname; nil means no limit
  prompt - the basic prompt (e.g. "Find File: ")
  literal - the string shown if doing "literal" find; set to nil to omit
  vc-off - the string shown if version control is inhibited; use nil to omit
  prefix - either nil or a fixed prefix for the dirname

The following variables are available, but should not be changed:
  ido-current-directory - the unabbreviated directory name
  item - equals file or dir depending on the current mode.

Source Code

;; Defined in /usr/src/emacs/lisp/ido.el.gz
(defcustom ido-rewrite-file-prompt-functions nil
  "List of functions to run when the `find-file' prompt is created.
Each function on the list may modify the following dynamically bound
variables:
  dirname   - the (abbreviated) directory name
		 to be modified by the hook functions
  max-width - the max width of the resulting dirname; nil means no limit
  prompt    - the basic prompt (e.g. \"Find File: \")
  literal   - the string shown if doing \"literal\" find; set to nil to omit
  vc-off    - the string shown if version control is inhibited; use nil to omit
  prefix    - either nil or a fixed prefix for the dirname

The following variables are available, but should not be changed:
  `ido-current-directory' - the unabbreviated directory name
  item - equals `file' or `dir' depending on the current mode."
  :type 'hook)