Variable: vc-annotate-display-mode

vc-annotate-display-mode is a customizable variable defined in vc-annotate.el.gz.

Value

fullscale

Documentation

Which mode to color the output of C-x v g (vc-annotate) with by default.

Source Code

;; Defined in /usr/src/emacs/lisp/vc/vc-annotate.el.gz
(defcustom vc-annotate-display-mode 'fullscale
  "Which mode to color the output of \\[vc-annotate] with by default."
  :type '(choice (const :tag "By Color Map Range" nil)
		 (const :tag "Scale to Oldest" scale)
		 (const :tag "Scale Oldest->Newest" fullscale)
		 (number :tag "Specify Fractional Number of Days"
			 :value "20.5"))
  :group 'vc)