Variable: project-list-exclude

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

Value

nil

Documentation

Exclude projects from being remembered by project-remember-project.

It should be a list of regexps and predicates for project roots and objects to always exclude from being remembered. The predicate should take one argument, the project object, and should return non-nil if the project should not be remembered.

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

View in manual

Probably introduced at or before Emacs version 31.1.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/project.el.gz
(defcustom project-list-exclude nil
  "Exclude projects from being remembered by `project-remember-project'.
It should be a list of regexps and predicates for project roots and
objects to always exclude from being remembered.  The predicate should
take one argument, the project object, and should return non-nil if the
project should not be remembered."
  :type '(repeat (choice regexp function))
  :version "31.1"
  :group 'project)