Variable: project-list-file

project-list-file is a customizable variable defined in project.el.gz.

Value

"~/.emacs.d/projects.eld"

Documentation

File in which to save the list of known projects.

This variable was added, or its default value changed, in Emacs 31.1.

View in manual

Probably introduced at or before Emacs version 28.1.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/project.el.gz
;;; Project list

(defcustom project-list-file
  (locate-user-emacs-file (if (>= emacs-major-version 31)
                              '("projects.eld" "projects")
                            "projects"))
  "File in which to save the list of known projects."
  :type 'file
  :version "31.1"
  :group 'project)