Variable: project-vc-include-untracked
project-vc-include-untracked is a customizable variable defined in
project.el.gz.
Value
t
Documentation
When non-nil, the VC-aware project backend includes untracked files.
This variable was added, or its default value changed, in Emacs 29.1.
Probably introduced at or before Emacs version 29.1.
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/project.el.gz
;;;###autoload(put 'project-vc-merge-submodules 'safe-local-variable #'booleanp)
;; FIXME Consider renaming this to `project-vc-include-unregistered' for
;; consistency with VC. "untracked" comes from Git and Mercurial so is
;; fine for now, but these may not always be the most popular VCS.
(defcustom project-vc-include-untracked t
"When non-nil, the VC-aware project backend includes untracked files."
:type 'boolean
:version "29.1")