Variable: ede-project-placeholder-cache-file
ede-project-placeholder-cache-file is a customizable variable defined
in base.el.gz.
Value
"~/.emacs.d/ede-projects.el"
Documentation
File containing the list of projects EDE has viewed.
If set to nil, then the cache is not saved.
Source Code
;; Defined in /usr/src/emacs/lisp/cedet/ede/base.el.gz
;;; The EDE persistent cache.
;;
;; The cache is a way to mark where all known projects live without
;; loading those projects into memory, or scanning for them each time
;; emacs starts.
;;
(defcustom ede-project-placeholder-cache-file
(locate-user-emacs-file "ede-projects.el" ".projects.ede")
"File containing the list of projects EDE has viewed.
If set to nil, then the cache is not saved."
:group 'ede
:type '(choice (const :tag "Don't save the cache" nil)
file))