Variable: project-vc-name

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

Value

nil

Documentation

When non-nil, the name of the current VC-aware project.

The best way to change the value a VC-aware project reports as its name, is by setting this in .dir-locals.el.

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

View in manual

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/project.el.gz
;;;###autoload(put 'project-vc-include-untracked 'safe-local-variable #'booleanp)

(defcustom project-vc-name nil
  "When non-nil, the name of the current VC-aware project.

The best way to change the value a VC-aware project reports as
its name, is by setting this in .dir-locals.el."
  :type '(choice (const :tag "Default to the base name" nil)
                 (string :tag "Custom name"))
  :version "29.1"
  :package-version '(project . "0.9.0"))