Variable: project-vc-merge-submodules

project-vc-merge-submodules is a customizable variable defined in project.el.gz.

Value

t

Documentation

Non-nil to consider submodules part of the parent project.

After changing this variable (using Customize or .dir-locals.el) you might have to restart Emacs to see the effect.

This variable was added, or its default value changed, in project version 0.2.0.

Probably introduced at or before Emacs version 28.1.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/project.el.gz
(defcustom project-vc-merge-submodules t
  "Non-nil to consider submodules part of the parent project.

After changing this variable (using Customize or .dir-locals.el)
you might have to restart Emacs to see the effect."
  :type 'boolean
  :version "28.1"
  :package-version '(project . "0.2.0")
  :safe #'booleanp)