Variable: ido-save-directory-list-file
ido-save-directory-list-file is a customizable variable defined in
ido.el.gz.
Value
"~/.emacs.d/ido.last"
Documentation
File in which the Ido state is saved between invocations.
Variables stored are: ido-last-directory-list, ido-work-directory-list,
ido-work-file-list, and ido-dir-file-cache.
Must be set before enabling Ido mode.
This variable was added, or its default value changed, in Emacs 24.4.
Source Code
;; Defined in /usr/src/emacs/lisp/ido.el.gz
(defcustom ido-save-directory-list-file
(locate-user-emacs-file "ido.last" ".ido.last")
"File in which the Ido state is saved between invocations.
Variables stored are: `ido-last-directory-list', `ido-work-directory-list',
`ido-work-file-list', and `ido-dir-file-cache'.
Must be set before enabling Ido mode."
:version "24.4" ; added locate-user-emacs-file
:type 'string)